-
Notifications
You must be signed in to change notification settings - Fork 70
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
test: Implemented integration tests for roller config init (#29)
- Loading branch information
1 parent
3b4099f
commit a434f3c
Showing
27 changed files
with
2,138 additions
and
56 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
package init | ||
package initconfig | ||
|
||
import ( | ||
"os" | ||
|
46 changes: 46 additions & 0 deletions
46
test/config/init/goldens/init_with_flags/relayer/config/config.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
global: | ||
api-listen-addr: :5183 | ||
timeout: 10s | ||
memo: "" | ||
light-cache-size: 20 | ||
chains: | ||
35-C: | ||
type: cosmos | ||
value: | ||
key: relayer-hub-key | ||
chain-id: 35-C | ||
rpc-addr: https://rpc-hub-35c.dymension.xyz:443 | ||
account-prefix: dym | ||
keyring-backend: test | ||
gas-adjustment: 1.2 | ||
gas-prices: 0.25udym | ||
debug: true | ||
timeout: 10s | ||
output-format: json | ||
sign-mode: direct | ||
client-type: 07-tendermint | ||
mars: | ||
type: cosmos | ||
value: | ||
key: relayer-rollapp-key | ||
chain-id: mars | ||
rpc-addr: http://localhost:26657 | ||
account-prefix: rol | ||
keyring-backend: test | ||
gas-adjustment: 1.2 | ||
gas-prices: 0.0udym | ||
debug: true | ||
timeout: 10s | ||
output-format: json | ||
sign-mode: direct | ||
client-type: 01-dymint | ||
paths: | ||
hub-rollapp: | ||
src: | ||
chain-id: mars | ||
dst: | ||
chain-id: 35-C | ||
src-channel-filter: | ||
rule: "" | ||
channel-list: [] | ||
settlement: 35-C |
Oops, something went wrong.