Skip to content

Commit

Permalink
chore(tokenfactory): fix the bank api
Browse files Browse the repository at this point in the history
Signed-off-by: aeryz <[email protected]>
  • Loading branch information
aeryz committed Jan 28, 2025
1 parent d287c79 commit 6de037c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion uniond/x/tokenfactory/types/expected_keepers.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ type BankKeeper interface {
SendCoinsFromModuleToAccount(ctx context.Context, senderModule string, recipientAddr sdk.AccAddress, amt sdk.Coins) error
SendCoinsFromAccountToModule(ctx context.Context, senderAddr sdk.AccAddress, recipientModule string, amt sdk.Coins) error
MintCoins(ctx context.Context, moduleName string, amt sdk.Coins) error
BurnCoins(ctx context.Context, address []byte, amt sdk.Coins) error
BurnCoins(ctx context.Context, moduleName string, amt sdk.Coins) error

SendCoins(ctx context.Context, fromAddr sdk.AccAddress, toAddr sdk.AccAddress, amt sdk.Coins) error
HasBalance(ctx context.Context, addr sdk.AccAddress, amt sdk.Coin) bool
Expand Down

0 comments on commit 6de037c

Please sign in to comment.