From 2029f9ce90005245ec3989bad3fe4656d8d258dd Mon Sep 17 00:00:00 2001 From: Luca Joss Date: Tue, 22 Oct 2024 17:10:32 +0200 Subject: [PATCH] Fix compilation error --- rpc/tests/kvstore_fixtures/v0_38.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/rpc/tests/kvstore_fixtures/v0_38.rs b/rpc/tests/kvstore_fixtures/v0_38.rs index 490f54826..b8827fea8 100644 --- a/rpc/tests/kvstore_fixtures/v0_38.rs +++ b/rpc/tests/kvstore_fixtures/v0_38.rs @@ -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]); @@ -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]); @@ -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"