-
Notifications
You must be signed in to change notification settings - Fork 391
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* change name * update ve * Delete keeper_test.go
- Loading branch information
1 parent
6cf672f
commit b033428
Showing
36 changed files
with
179 additions
and
242 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
build/tutoriald | ||
build/exampled | ||
build/ | ||
data/ | ||
config/ | ||
|
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
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,16 +1,16 @@ | ||
#!/usr/bin/env bash | ||
|
||
rm -r ~/.tutoriald || true | ||
tutorialD_BIN=$(which tutoriald) | ||
# configure tutoriald | ||
$tutorialD_BIN config set client chain-id demo | ||
$tutorialD_BIN config set client keyring-backend test | ||
$tutorialD_BIN keys add alice | ||
$tutorialD_BIN keys add bob | ||
$tutorialD_BIN init test --chain-id demo --default-denom tutorial | ||
rm -r ~/.exampled || true | ||
exampled_BIN=$(which exampled) | ||
# configure exampled | ||
$exampled_BIN config set client chain-id demo | ||
$exampled_BIN config set client keyring-backend test | ||
$exampled_BIN keys add alice | ||
$exampled_BIN keys add bob | ||
$exampled_BIN init test --chain-id demo --default-denom example | ||
# update genesis | ||
$tutorialD_BIN genesis add-genesis-account alice 10000000tutorial --keyring-backend test | ||
$tutorialD_BIN genesis add-genesis-account bob 1000tutorial --keyring-backend test | ||
$exampled_BIN genesis add-genesis-account alice 10000000example --keyring-backend test | ||
$exampled_BIN genesis add-genesis-account bob 1000example --keyring-backend test | ||
# create default validator | ||
$tutorialD_BIN genesis gentx alice 1000000tutorial --chain-id demo | ||
$tutorialD_BIN genesis collect-gentxs | ||
$exampled_BIN genesis gentx alice 1000000example --chain-id demo | ||
$exampled_BIN genesis collect-gentxs |
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
Oops, something went wrong.