From fd0391c72b7d04010fe7f6a98a95494559b7bf0b Mon Sep 17 00:00:00 2001 From: lyh169 Date: Fri, 7 Jul 2023 15:08:38 +0800 Subject: [PATCH] del debug --- x/wasm/keeper/keeper.go | 2 -- 1 file changed, 2 deletions(-) diff --git a/x/wasm/keeper/keeper.go b/x/wasm/keeper/keeper.go index 278b7f1000..653540e311 100644 --- a/x/wasm/keeper/keeper.go +++ b/x/wasm/keeper/keeper.go @@ -596,9 +596,7 @@ func (k Keeper) execute(ctx sdk.Context, contractAddress sdk.WasmAddress, caller } } - fmt.Println("************* start wasmvm execute *************") res, gasUsed, execErr := k.wasmVM.Execute(codeInfo.CodeHash, env, info, msg, prefixStore, cosmwasmAPI, querier, k.gasMeter(ctx), gas, costJSONDeserialization) - fmt.Println("************* end wasmvm execute *************", gasUsed) k.consumeRuntimeGas(ctx, gasUsed) if !ctx.IsCheckTx() && k.innertxKeeper != nil { k.innertxKeeper.UpdateWasmInnerTx(ctx.TxBytes(), ctx.BlockHeight(), innertx.CosmosDepth, caller, contractAddress, innertx.CosmosCallType, types.ExecuteInnertxName, coins, err, k.gasRegister.FromWasmVMGas(gasUsed), string(msg))