Skip to content

Commit c46f14a

Browse files
author
Gabriel Comte
committed
Fix getblockstats test
1 parent d7c2f9b commit c46f14a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

integration_test/src/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -318,7 +318,7 @@ fn test_get_block_stats(cl: &Client) {
318318
let header = cl.get_block_header(&tip_hash).unwrap();
319319
let stats = cl.get_block_stats(tip).unwrap();
320320
assert_eq!(header.block_hash(), stats.block_hash);
321-
assert_eq!(header.time, stats.time);
321+
assert_eq!(header.time, stats.time as u32);
322322
assert_eq!(tip, stats.height);
323323
}
324324

0 commit comments

Comments
 (0)