Created
April 20, 2022 10:10
-
-
Save jelilat/6080a26414ddd235e469c4b45ce070f0 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
type BankKeeper interface { | |
SpendableCoins(ctx sdk.Context, addr sdk.AccAddress) sdk.Coins | |
SendCoinsFromAccountToModule(ctx sdk.Context, senderAddr sdk.AccAddress, recipientModule string, amt sdk.Coins) error | |
SendCoinsFromModuleToAccount(ctx sdk.Context, senderModule string, recipientAddr sdk.AccAddress, amt sdk.Coins) error | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment