diff --git a/x/dymns/keeper/msg_server.go b/x/dymns/keeper/msg_server.go index 97d258403..28d7c7ded 100644 --- a/x/dymns/keeper/msg_server.go +++ b/x/dymns/keeper/msg_server.go @@ -27,7 +27,7 @@ func consumeMinimumGas(ctx sdk.Context, minimumGas, originalConsumedGas uint64, if minimumGas > 0 { laterConsumedGas := ctx.GasMeter().GasConsumed() if laterConsumedGas < originalConsumedGas { - // unexpect gas consumption + // unexpected gas consumption panic(fmt.Sprintf( "later gas is less than original gas: %d < %d", laterConsumedGas, originalConsumedGas,