diff --git a/tests/e2e/e2e_setup_test.go b/tests/e2e/e2e_setup_test.go index 5a4906e0cbb..2885c31a330 100644 --- a/tests/e2e/e2e_setup_test.go +++ b/tests/e2e/e2e_setup_test.go @@ -160,7 +160,7 @@ func (s *IntegrationTestSuite) runValidators(c *chain.Chain, portOffset int) { func (s *IntegrationTestSuite) runIBCRelayer() { s.T().Log("starting Hermes relayer container...") - tmpDir, err := ioutil.TempDir("", "gaia-e2e-testnet-hermes-") + tmpDir, err := ioutil.TempDir("", "osmosis-e2e-testnet-hermes-") s.Require().NoError(err) s.tmpDirs = append(s.tmpDirs, tmpDir) @@ -248,7 +248,7 @@ func (s *IntegrationTestSuite) runIBCRelayer() { // transport errors. time.Sleep(10 * time.Second) - // create the client, connection and channel between the two Gaia chains + // create the client, connection and channel between the two Osmosis chains s.connectIBCChains() } diff --git a/tests/e2e/scripts/hermes_bootstrap.sh b/tests/e2e/scripts/hermes_bootstrap.sh index 7295a8e14ec..4a438c1f9ff 100644 --- a/tests/e2e/scripts/hermes_bootstrap.sh +++ b/tests/e2e/scripts/hermes_bootstrap.sh @@ -39,7 +39,7 @@ grpc_addr = 'http://$OSMO_A_E2E_VAL_HOST:9090' websocket_addr = 'ws://$OSMO_A_E2E_VAL_HOST:26657/websocket' rpc_timeout = '10s' account_prefix = 'osmo' -key_name = 'val01-gaia-a' +key_name = 'val01-osmosis-a' store_prefix = 'ibc' max_gas = 6000000 gas_price = { price = 0.000, denom = 'stake' } @@ -54,7 +54,7 @@ grpc_addr = 'http://$OSMO_B_E2E_VAL_HOST:9090' websocket_addr = 'ws://$OSMO_B_E2E_VAL_HOST:26657/websocket' rpc_timeout = '10s' account_prefix = 'osmo' -key_name = 'val01-gaia-b' +key_name = 'val01-osmosis-b' store_prefix = 'ibc' max_gas = 6000000 gas_price = { price = 0.000, denom = 'stake' } @@ -65,8 +65,8 @@ trust_threshold = { numerator = '1', denominator = '3' } EOF # import keys -hermes keys restore ${OSMO_B_E2E_CHAIN_ID} -n "val01-gaia-b" -m "${OSMO_B_E2E_VAL_MNEMONIC}" -hermes keys restore ${OSMO_A_E2E_CHAIN_ID} -n "val01-gaia-a" -m "${OSMO_A_E2E_VAL_MNEMONIC}" +hermes keys restore ${OSMO_B_E2E_CHAIN_ID} -n "val01-osmosis-b" -m "${OSMO_B_E2E_VAL_MNEMONIC}" +hermes keys restore ${OSMO_A_E2E_CHAIN_ID} -n "val01-osmosis-a" -m "${OSMO_A_E2E_VAL_MNEMONIC}" # start Hermes relayer hermes start