Skip to content

Commit f947b0d

Browse files
MrWad3rRexagon
authored andcommitted
Add support for new FixedBytes abi v 2.4 implementation
1 parent 65809ca commit f947b0d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/abi/tests/mod.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ fn test_fixed_bytes() {
8080
let value = AbiValue::FixedBytes(Bytes::from(bytes.clone()));
8181
let cell_2 = value.make_cell(AbiVersion::V2_3).unwrap();
8282
let cell_24 = value.make_cell(AbiVersion::V2_4).unwrap();
83-
let mut bytes_builder = CellBuilder::from_raw_data(bytes.as_ref(), 256).unwrap();
83+
let bytes_builder = CellBuilder::from_raw_data(bytes.as_ref(), 256).unwrap();
8484

8585
let mut builder_v24 = builder.clone();
8686
builder_v24.store_builder(&bytes_builder).unwrap();

0 commit comments

Comments
 (0)