Skip to content

Commit 595b0db

Browse files
committed
add more fees to gaia relayer
1 parent 5c85f0d commit 595b0db

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

interchaintest/setup.go

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import (
88
"cosmossdk.io/math"
99
wasmtypes "github.com/CosmWasm/wasmd/x/wasm/types"
1010
"github.com/cosmos/cosmos-sdk/types/module/testutil"
11-
liquidtypes "github.com/cosmos/gaia/v24/x/liquid/types"
11+
liquidtypes "github.com/cosmos/gaia/v25/x/liquid/types"
1212
"github.com/cosmos/interchaintest/v10"
1313
"github.com/cosmos/interchaintest/v10/chain/cosmos"
1414
"github.com/cosmos/interchaintest/v10/ibc"
@@ -25,6 +25,9 @@ var (
2525
IBCRelayerImage = "ghcr.io/cosmos/relayer"
2626
IBCRelayerVersion = "main"
2727

28+
HermesRelayerImage = "ghcr.io/informalsystems/hermes"
29+
HermesRelayerVersion = "main"
30+
2831
PersistenceCoreImage = ibc.DockerImage{
2932
Repository: "persistence",
3033
Version: "local",
@@ -84,7 +87,8 @@ var (
8487
},
8588
}
8689

87-
genesisWalletAmount = math.NewInt(10_000_000)
90+
genesisWalletAmount = math.NewInt(10_000_000)
91+
cosmosGenesisWalletAmount = math.NewInt(1_000_000_000_000)
8892
)
8993

9094
// PersistenceEncoding registers the persistenceCore specific module codecs so that the associated types and msgs

0 commit comments

Comments
 (0)