chore: uncomment todo in upgrade systemtest (#24724)

Co-authored-by: Alex | Interchain Labs <alex@interchainlabs.io>
This commit is contained in:
Tyler 2025-05-12 07:27:31 -07:00 committed by GitHub
parent fc319bbd35
commit 06fb8ea11f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -124,10 +124,9 @@ func TestChainUpgrade(t *testing.T) {
systest.Sut.StartChain(t)
require.Equal(t, upgradeHeight+1, systest.Sut.CurrentHeight())
// cli = systest.NewCLIWrapper(t, systest.Sut, systest.Verbose)
// smoke test that new version runs
// TODO: add once protocol pool is enabled
// got := cli.Run("tx", "protocolpool", "fund-community-pool", "100stake", "--from=node0")
// systest.RequireTxSuccess(t, got)
cli = systest.NewCLIWrapper(t, systest.Sut, systest.Verbose)
got := cli.Run("tx", "protocolpool", "fund-community-pool", "100stake", "--from=node0")
systest.RequireTxSuccess(t, got)
}