-
Notifications
You must be signed in to change notification settings - Fork 98
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Faucet don't give a second chance #2210
Changes from all commits
00e824e
56dd171
93446ee
f663964
ef8189f
0448ab4
6119f56
0d71492
1574198
bdea422
cf4945c
3f61ae7
efae682
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,7 +15,7 @@ NODEID=$(./gaiad tendermint show-node-id --home .) | |
|
||
# Create our main account and add it to the genesis with a lot of money | ||
echo ${PASSWORD} | ./gaiacli keys add ${ACCOUNT} --home . > account_address.log | ||
./gaiad add-genesis-account $(./gaiacli keys show ${ACCOUNT} --home . --address) 100000000000000000stake,999000000000photino,123123123123cococoin --home . | ||
./gaiad add-genesis-account $(./gaiacli keys show ${ACCOUNT} --home . --address) 1000000000000000000000stake,100000000000000000000photino,123123123123123123cococoin --home . | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. why not 9999999999999999999999999999999 so we don't run out There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 18446744073709551615 should be the biggest available There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. lol ok why not that number then? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. we are already overflowing XD:
So probably we already have everything we can There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. My bad, on SDK I found out big integers are used so we have way more than 64 bits, as soon as I'm sure about the number of bits I'll update this number |
||
|
||
echo ${PASSWORD} | ./gaiad gentx --name ${ACCOUNT} --home . --home-client . | ||
./gaiad collect-gentxs --home . | ||
|
@@ -26,6 +26,6 @@ aws s3 cp config/genesis.json s3://cosmos-gaia/genesis.json | |
# boot proper nodes in reachable detached sessions | ||
screen -dmS gaia ./gaiad start --home . | ||
screen -dmS rest ./gaiacli rest-server --laddr tcp://0.0.0.0:${API_PORT} --home . --node http://localhost:${PORT} --chain-id ${NETWORK} --trust-node true | ||
screen -dmS faucet ./faucet.sh ${ACCOUNT} ${PASSWORD} ${NETWORK} | ||
screen -dmSL faucet ./faucet.sh ${ACCOUNT} ${PASSWORD} ${NETWORK} | ||
|
||
echo ${NODEID} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
### Changed | ||
|
||
- [#\2210](https://github.com/cosmos/voyager/pull/2210) Faucet give money only to non-existent addresses @sabau | ||
- [#\2202](https://github.com/cosmos/voyager/pull/2202) Fix circle configuration for publishing @sabau | ||
- [#\2236](https://github.com/cosmos/voyager/pull/2236) ES lint no tabs @sabau | ||
- [#\2236](https://github.com/cosmos/voyager/pull/2236) ES lint no tabs @sabau |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
smaller timeout doesn't work? @alessio this was the problem I explained
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
yeah in this moment apparently that's the safest solution available