You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
MsgStoreCodeAndInstantiateContract amino signature verify fails because wrong amino codec is being used in MsgStoreCodeAndInstantiateContract::GetSignBytes(). Now wasm's amino codec is being used not wasmplus's amino codec. https://github.com/line/wasmd/blob/main/x/wasmplus/types/tx.go#L54
And I got one more error. https://github.com/line/wasmd/blob/main/x/wasmplus/types/codec.go#L19
when registering amino msg in codec, amino message type name is wrong.
currently "wasm/StoreCodeAndInstantiateContract", this should be "wasm/MsgStoreCodeAndInstantiateContract" like other messages.
The text was updated successfully, but these errors were encountered:
MsgStoreCodeAndInstantiateContract amino signature verify fails because wrong amino codec is being used in
MsgStoreCodeAndInstantiateContract::GetSignBytes()
. Now wasm's amino codec is being used not wasmplus's amino codec.https://github.com/line/wasmd/blob/main/x/wasmplus/types/tx.go#L54
And I got one more error.
https://github.com/line/wasmd/blob/main/x/wasmplus/types/codec.go#L19
when registering amino msg in codec, amino message type name is wrong.
currently
"wasm/StoreCodeAndInstantiateContract"
, this should be"wasm/MsgStoreCodeAndInstantiateContract"
like other messages.The text was updated successfully, but these errors were encountered: