Skip to content

Commit

Permalink
Switch relayer cmd to rly (#817)
Browse files Browse the repository at this point in the history
Closes: #XXX

## Context and purpose of the change




## Brief Changelog




## Author's Checklist

I have...

- [ ] Run and PASSED locally all GAIA integration tests
- [ ] If the change is contentful, I either:
    - [ ] Added a new unit test OR 
    - [ ] Added test cases to existing unit tests
- [ ] OR this change is a trivial rework / code cleanup without any test coverage

If skipped any of the tests above, explain.


## Reviewers Checklist

*All items are required. Please add a note if the item is not applicable and please add
your handle next to the items reviewed if you only reviewed selected items.*

I have...

- [ ] reviewed state machine logic
- [ ] reviewed API design and naming
- [ ] manually tested (if applicable)
- [ ] confirmed the author wrote unit tests for new logic
- [ ] reviewed documentation exists and is accurate


## Documentation and Release Note

  - [ ] Does this pull request introduce a new feature or user-facing behavior changes? 
  - [ ] Is a relevant changelog entry added to the `Unreleased` section in `CHANGELOG.md`?
  - [ ] This pull request updates existing proto field values (and require a backend and frontend migration)? 
  - [ ] Does this pull request change existing proto field names (and require a frontend migration)?
  How is the feature or change documented? 
      - [ ] not applicable
      - [ ] jira ticket `XXX` 
      - [ ] specification (`x/<module>/spec/`) 
      - [ ] README.md 
      - [ ] not documented
  • Loading branch information
Kent Gang authored Jun 15, 2023
1 parent a3eff2d commit 6719a44
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -38,3 +38,5 @@ vue/*

.vscode
!.vscode/settings.json

.ipynb_checkpoints/*
3 changes: 1 addition & 2 deletions dockernet/config.sh
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -234,7 +234,6 @@ EVMOS_RECEIVER_ADDRESS='evmos123z469cfejeusvk87ufrs5520wmdxmmlc7qzuw'
EVMOS_MICRO_DENOM_UNITS="000000000000000000000000"

# RELAYER
RELAYER_CMD="$DOCKERNET_HOME/../build/relayer --home $STATE/relayer"
RELAYER_GAIA_EXEC="$DOCKER_COMPOSE run --rm relayer-gaia"
RELAYER_JUNO_EXEC="$DOCKER_COMPOSE run --rm relayer-juno"
RELAYER_OSMO_EXEC="$DOCKER_COMPOSE run --rm relayer-osmo"
Expand Down Expand Up @@ -357,4 +356,4 @@ GET_ICA_ADDR() {

TRIM_TX() {
grep -E "code:|txhash:" | sed 's/^/ /'
}
}
4 changes: 2 additions & 2 deletions scripts/local-to-mainnet/start.sh
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ sed -i -E "s|HOST_COIN_TYPE|$HOST_COIN_TYPE|g" $RELAYER_CONFIG_FILE
# rm -f $TMP_MNEMONICS

echo "Adding Relayer keys"
RELAYER_CMD="$SCRIPT_DIR/../../build/relayer --home $STATE/relayer"
RELAYER_CMD="$SCRIPT_DIR/../../build/rly --home $STATE/rly"
$RELAYER_CMD keys restore stride rly1 "$RELAYER_STRIDE_MNEMONIC"
$RELAYER_CMD keys restore host rly2 "$HOT_WALLET_3_MNEMONIC"

Expand Down Expand Up @@ -106,4 +106,4 @@ sed -i -E "s|HOST_VAL_ADDRESS_2|$HOST_VAL_ADDRESS_2|g" $COMMANDS_FILE
sed -i -E "s|HOT_WALLET_ADDRESS|$HOT_WALLET_1_ADDRESS|g" $COMMANDS_FILE

rm -f $COMMANDS_FILE-E
echo "Done"
echo "Done"

0 comments on commit 6719a44

Please sign in to comment.