Skip to content
This repository was archived by the owner on Aug 23, 2025. It is now read-only.
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 5 additions & 7 deletions app/app_parallel.go
Original file line number Diff line number Diff line change
Expand Up @@ -192,13 +192,11 @@ func isParaSupportedE2CMsg(payload []byte) bool {
return false
}
switch mw.Name {
case "wasm/MsgInstantiateContract":
return false
case "wasm/MsgMigrateContract":
return false
case "wasm/MsgUpdateAdmin":
return false
default:
case "wasm/MsgExecuteContract":
return true
case "wasm/MsgStoreCode":
return true
default:
return false
}
}