diff --git a/rpc/tests/kvstore_fixtures/v0_38.rs b/rpc/tests/kvstore_fixtures/v0_38.rs index e1d314390..b2e39b8a6 100644 --- a/rpc/tests/kvstore_fixtures/v0_38.rs +++ b/rpc/tests/kvstore_fixtures/v0_38.rs @@ -699,6 +699,18 @@ fn incoming_fixtures() { ); assert_eq!(result.node_info.version.to_string(), "0.38.0-alpha.1"); assert!(!result.sync_info.catching_up); + assert_eq!(result.sync_info.earliest_app_hash.as_bytes(), &[0u8; 8]); + assert!(!result.sync_info.earliest_block_hash.is_empty()); + assert_eq!(result.sync_info.earliest_block_height.value(), 1); + assert!( + result + .sync_info + .earliest_block_time + .duration_since(informal_epoch) + .unwrap() + .as_secs() + > 0 + ); assert_eq!( result.sync_info.latest_app_hash.as_bytes(), [6, 0, 0, 0, 0, 0, 0, 0]