From 46dbb4e133288ca8cea4327a88f478595c643752 Mon Sep 17 00:00:00 2001 From: Philip Offtermatt Date: Mon, 5 Aug 2024 14:14:06 +0200 Subject: [PATCH] Fix reference to bank blocked addrs in simulation --- app/provider/sim_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/provider/sim_test.go b/app/provider/sim_test.go index db0d0b62dc..ef938b0b53 100644 --- a/app/provider/sim_test.go +++ b/app/provider/sim_test.go @@ -84,7 +84,7 @@ func TestFullAppSimulation(t *testing.T) { simtestutil.AppStateFn(encoding.Codec, app.SimulationManager(), genesisState), simtypes.RandomAccounts, // Replace with own random account function if using keys other than secp256k1 simtestutil.SimulationOperations(app, app.AppCodec(), config), - providerapp.BankBlockedAddrs(app), + providerapp.ComputeBankBlockedAddrs(app), config, app.AppCodec(), )