Remove some TODOs (#6488)

* Remove stale TODOs

* Ban TODO markers from markdown

* Scrub all TODOs from ci/ and book/
This commit is contained in:
Michael Vines
2019-10-21 22:25:06 -07:00
committed by GitHub
parent 1b1980ad49
commit f80a5b8c34
16 changed files with 27 additions and 94 deletions

View File

@ -88,14 +88,12 @@ if [[ ! -f $vote_keypair_path ]]; then
fi
if [[ -f $stake_keypair_path ]]; then
# TODO: Add ability to add multiple stakes with this script?
echo "Error: $stake_keypair_path already exists"
exit 1
fi
if ((airdrops_enabled)); then
declare fees=100 # TODO: No hardcoded transaction fees, fetch the current cluster fees
$solana_cli "${common_args[@]}" airdrop $((stake_lamports+fees)) lamports
$solana_cli "${common_args[@]}" airdrop "$stake_lamports" lamports
fi
$solana_keygen new -o "$stake_keypair_path"