Skip to content

Commit

Permalink
Fix compilation error
Browse files Browse the repository at this point in the history
  • Loading branch information
ljoss17 committed Oct 22, 2024
1 parent ccc53d4 commit 2029f9c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions rpc/tests/kvstore_fixtures/v0_38.rs
Original file line number Diff line number Diff line change
Expand Up @@ -332,7 +332,7 @@ fn incoming_fixtures() {
}
},
"block_at_height_1" => {
let result = endpoint::block::v_038::DialectResponse::from_string(content).unwrap();
let result = endpoint::block::v0_38::DialectResponse::from_string(content).unwrap();
assert!(result.block.data.first().is_none());
assert!(result.block.evidence.iter().next().is_none());
assert_eq!(result.block.header.app_hash.as_bytes(), [0u8; 8]);
Expand Down Expand Up @@ -373,7 +373,7 @@ fn incoming_fixtures() {
assert_eq!(result.block_id.part_set_header.total, 1);
},
"block_at_height_10" => {
let result = endpoint::block::v_038::DialectResponse::from_string(content).unwrap();
let result = endpoint::block::v0_38::DialectResponse::from_string(content).unwrap();
assert!(result.block.data.first().is_none());
assert!(result.block.evidence.iter().next().is_none());
assert_eq!(result.block.header.app_hash.as_bytes(), &[0u8; 8]);
Expand Down Expand Up @@ -430,7 +430,7 @@ fn incoming_fixtures() {
},
"block_by_hash" => {
let result =
endpoint::block_by_hash::v_038::DialectResponse::from_string(content).unwrap();
endpoint::block_by_hash::v0_38::DialectResponse::from_string(content).unwrap();
assert_eq!(
result.block_id.hash.to_string(),
"47493B51E102705F6DCCE5981E05B7C025BB5BF19CF5E4B54FE28CAFE9D20C8A"
Expand Down

0 comments on commit 2029f9c

Please sign in to comment.