-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
28 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,13 @@ | ||
#!/usr/bin/expect -f | ||
set timeout 200 | ||
|
||
|
||
set payments [ file join payments.txt ] | ||
set fh [ open $payments r ] | ||
set password [lindex $argv 0] | ||
|
||
while {[gets $fh payment] != -1} { | ||
eval spawn $payment | ||
expect "Enter password for encrypted key:" {send -- "$password\r"} | ||
expect eof | ||
} |
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 |
---|---|---|
@@ -0,0 +1,6 @@ | ||
#!/bin/bash | ||
|
||
echo "Password: " | ||
read -s PWD | ||
|
||
./_runNodePayments.tcl $PWD |
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 |
---|---|---|
@@ -0,0 +1,9 @@ | ||
./tezos-client transfer 6.62 from tezos-suisse to KT1PhwnQtRxhqnoHPn7pUauTYXZDnDbxTEYJ --fee 0.01 | ||
./tezos-client transfer 3.76 from tezos-suisse to KT1VRZqnGFDXazNv6y2GWktzkc2p6J4SeU6a --fee 0.01 | ||
./tezos-client transfer 1.4 from tezos-suisse to KT1Jev2rDzb92wGKPSwbVEGkcHosMUTvz89A --fee 0.01 | ||
./tezos-client transfer 1.09 from tezos-suisse to KT1Tybh9CY57AcHny8mHpaFyrV3BtWfxpYtz --fee 0.01 | ||
./tezos-client transfer 0.74 from tezos-suisse to KT1XZjBGz2ThwnWvxxpHYy2NmxgZPFBNqDfa --fee 0.01 | ||
./tezos-client transfer 0.71 from tezos-suisse to KT1VunidXJHRLCQoFtTABNDeBrUkw9gKfDS2 --fee 0.01 | ||
./tezos-client transfer 0.61 from tezos-suisse to KT1FcgG5dgbVUQNfLNQWFGXTxcybaFpmPFVP --fee 0.01 | ||
./tezos-client transfer 0.06 from tezos-suisse to KT1USRRcbdPzX1Sa9B5hEyhZAsjRgPVpzM9J --fee 0.01 | ||
./tezos-client transfer 0.0 from tezos-suisse to KT1CpwuvYccHLzyAvJu2zRGSSuyqC8u4sJSU --fee 0.01 |