Skip to content

Commit

Permalink
USE_SNAP=1 is now supported
Browse files Browse the repository at this point in the history
  • Loading branch information
mvines committed Jul 14, 2018
1 parent 1f9152d commit 55d43d9
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion multinode-demo/test/wallet-sanity.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,13 @@
here=$(dirname "$0")
cd "$here"

wallet="../wallet.sh $1"
if [[ -n "$USE_SNAP" ]]; then
# TODO: Merge wallet.sh functionality into solana-wallet proper and
# remove this USE_SNAP case
wallet="solana.wallet $1"
else
wallet="../wallet.sh $1"
fi

# Tokens transferred to this address are lost forever...
garbage_address=vS3ngn1TfQmpsW1Z4NkLuqNAQFF3dYQw8UZ6TCx9bmq
Expand Down

0 comments on commit 55d43d9

Please sign in to comment.