Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump dependencies #526

Merged
merged 14 commits into from
Aug 10, 2021
Prev Previous commit
Next Next commit
check reply error
  • Loading branch information
yun-yeo committed Aug 3, 2021
commit d9d3a0b8aa438d96b103088ebeb73b7ec6a2295d
3 changes: 3 additions & 0 deletions x/wasm/keeper/contract.go
Original file line number Diff line number Diff line change
Expand Up @@ -355,6 +355,9 @@ func (k Keeper) reply(
ctx.GasMeter().ConsumeGas(types.ReplyCosts(reply), "Loading CosmWasm module: reply")

codeInfo, storePrefix, err := k.getContractDetails(ctx, contractAddress)
if err != nil {
return nil, err
}

env := types.NewEnv(ctx, contractAddress)
res, gasUsed, err := k.wasmVM.Reply(
Expand Down