From cd2801589d11043c7db9aaa0c1357819ddc5b5d1 Mon Sep 17 00:00:00 2001 From: Marko Date: Thu, 6 Feb 2025 14:25:15 +0100 Subject: [PATCH] chore(bank): add more information to the godoc (#23624) --- x/bank/keeper/keeper.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/x/bank/keeper/keeper.go b/x/bank/keeper/keeper.go index f8e8aab229..eb3a8201f8 100644 --- a/x/bank/keeper/keeper.go +++ b/x/bank/keeper/keeper.go @@ -266,7 +266,7 @@ func (k BaseKeeper) SendCoinsFromModuleToAccount( } // SendCoinsFromModuleToModule transfers coins from a ModuleAccount to another. -// An error is returned if either module accounts does not exist. +// An error is returned if either module accounts does not exist or if the recipient address is blocked. func (k BaseKeeper) SendCoinsFromModuleToModule( ctx context.Context, senderModule, recipientModule string, amt sdk.Coins, ) error {