From 78b3acbb7d988f9233a0916a4fe25c26b5559c4b Mon Sep 17 00:00:00 2001 From: Jeremy Wei Date: Mon, 29 Jul 2024 12:03:04 -0400 Subject: [PATCH] fix --- 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 cafb4e2..03f5681 100644 --- a/x/wasm/keeper/keeper.go +++ b/x/wasm/keeper/keeper.go @@ -164,7 +164,6 @@ func (k Keeper) GetParams(ctx sdk.Context) types.Params { } func (k Keeper) SetParams(ctx sdk.Context, ps types.Params) { - fmt.Println("In x/wasm, keeper: trying to set params = ", ps) k.paramSpace.SetParamSet(ctx, &ps) } @@ -1008,7 +1007,6 @@ func (k Keeper) PeekAutoIncrementID(ctx sdk.Context, lastIDKey []byte) uint64 { func (k Keeper) importAutoIncrementID(ctx sdk.Context, lastIDKey []byte, val uint64) error { store := ctx.KVStore(k.storeKey) - fmt.Println("lastIDKey = ", string(lastIDKey)) if store.Has(lastIDKey) { return sdkerrors.Wrapf(types.ErrDuplicate, "autoincrement id: %s", string(lastIDKey)) }