Rename solana-wallet program to just solana (#5604)

* Rename wallet/ to cli/

* Rename the solana-wallet crate to solana-cli

* Rename solana-wallet program to solana

* cargo fmt
This commit is contained in:
Michael Vines
2019-08-22 13:51:16 -07:00
committed by GitHub
parent 19d16e75c6
commit 1207664bbb
29 changed files with 162 additions and 145 deletions

View File

@@ -62,7 +62,7 @@ if [[ ! -r $identity_keypair ]]; then
$solana_keygen new -o "$identity_keypair"
# TODO: https://github.com/solana-labs/solminer/blob/9cd2289/src/replicator.js#L17-L18
$solana_wallet --keypair "$identity_keypair" --url "$rpc_url" \
$solana_cli --keypair "$identity_keypair" --url "$rpc_url" \
airdrop 100000
fi
identity_pubkey=$($solana_keygen pubkey "$identity_keypair")
@@ -71,7 +71,7 @@ if [[ ! -r $storage_keypair ]]; then
$solana_keygen new -o "$storage_keypair"
storage_pubkey=$($solana_keygen pubkey "$storage_keypair")
$solana_wallet --keypair "$identity_keypair" --url "$rpc_url" \
$solana_cli --keypair "$identity_keypair" --url "$rpc_url" \
create-replicator-storage-account "$identity_pubkey" "$storage_pubkey"
fi