Skip to content

Commit

Permalink
clean up names
Browse files Browse the repository at this point in the history
  • Loading branch information
p0mvn committed Apr 21, 2022
1 parent 2bd6a80 commit ef744bb
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions tests/e2e/e2e_setup_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand Down Expand Up @@ -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()
}

Expand Down
8 changes: 4 additions & 4 deletions tests/e2e/scripts/hermes_bootstrap.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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' }
Expand All @@ -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' }
Expand All @@ -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

0 comments on commit ef744bb

Please sign in to comment.