Skip to content

Commit

Permalink
fix msg send sim
Browse files Browse the repository at this point in the history
  • Loading branch information
facundomedica committed Dec 11, 2023
1 parent 4cf6a13 commit 2eba77f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion x/bank/module.go
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,7 @@ func ProvideModule(in ModuleInputs) ModuleOutputs {
}
} else {
for _, permission := range in.AccountKeeper.GetModulePermissions() {
addrStr, err := in.AccountKeeper.AddressCodec().BytesToString(authtypes.NewModuleAddress(string(permission.GetAddress())))
addrStr, err := in.AccountKeeper.AddressCodec().BytesToString(permission.GetAddress())
if err != nil {
panic(err)
}
Expand Down

0 comments on commit 2eba77f

Please sign in to comment.