File tree 2 files changed +7
-1
lines changed
2 files changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -75,6 +75,11 @@ This code is compiled into Wasm bytecode as part of the smart contract.
75
75
some given source code, allowing a
76
76
[ similar contract verification algorithm] ( https://medium.com/coinmonks/how-to-verify-and-publish-on-etherscan-52cf25312945 )
77
77
as Etherscan.
78
+
79
+ Building locally instead of using the docker image can
80
+ [ leak some information about the directory structure of your system] ( https://github.com/CosmWasm/cosmwasm/issues/1918 )
81
+ and makes the build non-reproducible.
82
+
78
83
- [ serde-json-wasm] ( https://github.com/CosmWasm/serde-json-wasm ) - A custom json
79
84
library, forked from ` serde-json-core ` . This provides an interface similar to
80
85
` serde-json ` , but without any floating-point instructions (non-deterministic)
Original file line number Diff line number Diff line change @@ -453,7 +453,8 @@ fn execute_panic() {
453
453
match execute_res. unwrap_err ( ) {
454
454
VmError :: RuntimeErr { msg, .. } => {
455
455
assert ! (
456
- msg. contains( "Aborted: panicked at 'This page intentionally faulted'" ) ,
456
+ msg. contains( "Aborted: panicked" )
457
+ && msg. contains( "This page intentionally faulted" ) ,
457
458
"Must contain panic message"
458
459
) ;
459
460
assert ! ( msg. contains( "contract.rs:" ) , "Must contain file and line" ) ;
You can’t perform that action at this time.
0 commit comments