test: fix roots check

This commit is contained in:
ardocrat 2023-10-18 23:28:16 +03:00
parent f412f3e80f
commit 8559c4b31e

View file

@ -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);