File tree 1 file changed +10
-2
lines changed
1 file changed +10
-2
lines changed Original file line number Diff line number Diff line change @@ -296,7 +296,11 @@ contract LibWasmTest is Test {
296
296
);
297
297
bytes memory expectedError = abi.encodeWithSelector (InvalidValue.selector , "Length exceeds max size of 255 " );
298
298
vm.expectRevert (expectedError);
299
- LibWasm.encodeCborBytesArray (data);
299
+ this .externalEncodeCborBytesArray (data); // Call through external function
300
+ }
301
+
302
+ function externalEncodeCborBytesArray (bytes memory data ) external pure returns (bytes memory ) {
303
+ return LibWasm.encodeCborBytesArray (data);
300
304
}
301
305
302
306
function testEncodeCborIrohNodeId () public pure {
@@ -362,7 +366,11 @@ contract LibWasmTest is Test {
362
366
bytes memory expectedError = abi.encodeWithSelector (InvalidValue.selector , "value * 1e18 overflows uint256 " );
363
367
vm.expectRevert (expectedError);
364
368
value = 1000000000000000000000000000000000000000000000000000000000000000000000000 ;
365
- result = LibWasm.encodeCborUint256AsBytes (value, true );
369
+ this .externalEncodeCborUint256AsBytes (value, true );
370
+ }
371
+
372
+ function externalEncodeCborUint256AsBytes (uint256 value , bool padding ) external pure returns (bytes memory ) {
373
+ return LibWasm.encodeCborUint256AsBytes (value, padding);
366
374
}
367
375
368
376
function testDecodeCborByteStringToUint64 () public pure {
You can’t perform that action at this time.
0 commit comments