diff --git a/app/app.go b/app/app.go index 3b132683fd..237c09844d 100644 --- a/app/app.go +++ b/app/app.go @@ -1067,6 +1067,9 @@ func (app *EthermintApp) BlockedAddrs() map[string]bool { blockedAddrs[authtypes.NewModuleAddress(acc).String()] = !allowedReceivingModAcc[acc] } + // allow the following addresses to receive funds + delete(blockedAddrs, authtypes.NewModuleAddress(govtypes.ModuleName).String()) + return blockedAddrs }