mirror of
https://github.com/mimblewimble/grin.git
synced 2025-05-12 12:11:15 +03:00
test: fix roots check
This commit is contained in:
parent
f412f3e80f
commit
8559c4b31e
1 changed files with 1 additions and 1 deletions
|
@ -238,7 +238,7 @@ impl DesegmenterRequestor {
|
|||
}
|
||||
|
||||
pub fn check_roots(&self) {
|
||||
let roots = self.chain.txhashset().read().roots();
|
||||
let roots = self.chain.txhashset().read().roots().unwrap();
|
||||
let archive_header = self.chain.txhashset_archive_header_header_only().unwrap();
|
||||
debug!("Archive Header is {:?}", archive_header);
|
||||
debug!("TXHashset output root is {:?}", roots);
|
||||
|
|
Loading…
Add table
Reference in a new issue