Skip to content

Commit

Permalink
chore: remove accidental println (#18864)
Browse files Browse the repository at this point in the history
  • Loading branch information
gorgos authored Dec 21, 2023
1 parent c519104 commit 51b72d2
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions x/bank/keeper/msg_server.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ package keeper

import (
"context"
"fmt"

"github.com/hashicorp/go-metrics"

Expand Down Expand Up @@ -201,7 +200,7 @@ func (k msgServer) Burn(goCtx context.Context, msg *types.MsgBurn) (*types.MsgBu
if !coins.IsValid() {
return nil, errorsmod.Wrap(sdkerrors.ErrInvalidCoins, coins.String())
}
fmt.Println("coins", coins)

if !coins.IsAllPositive() {
return nil, errorsmod.Wrap(sdkerrors.ErrInvalidCoins, coins.String())
}
Expand Down

0 comments on commit 51b72d2

Please sign in to comment.