From 6d045ea59bc63d915030355025361689cae530e7 Mon Sep 17 00:00:00 2001 From: Marko Baricevic Date: Thu, 20 Feb 2020 12:23:09 +0100 Subject: [PATCH] undo minor changes --- x/bank/simulation/params.go | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/x/bank/simulation/params.go b/x/bank/simulation/params.go index bb9e2dc2240e..458a8a09a16e 100644 --- a/x/bank/simulation/params.go +++ b/x/bank/simulation/params.go @@ -6,8 +6,6 @@ import ( "fmt" "math/rand" - gogotypes "github.com/gogo/protobuf/types" - "github.com/cosmos/cosmos-sdk/x/bank/types" "github.com/cosmos/cosmos-sdk/x/simulation" ) @@ -20,7 +18,7 @@ func ParamChanges(r *rand.Rand) []simulation.ParamChange { return []simulation.ParamChange{ simulation.NewSimParamChange(types.ModuleName, keySendEnabled, func(r *rand.Rand) string { - return fmt.Sprintf("%v", gogotypes.BoolValue{Value: GenSendEnabled(r)}) + return fmt.Sprintf("%v", GenSendEnabled(r)) }, ), }