From b910cd071c5078e3105a4f80575b0fc0fb685405 Mon Sep 17 00:00:00 2001 From: blackjok3r Date: Tue, 31 Jul 2018 20:42:57 +0800 Subject: [PATCH] modified: cron_splitfunds --- a-team/scripts.notary/cron_splitfunds | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/a-team/scripts.notary/cron_splitfunds b/a-team/scripts.notary/cron_splitfunds index bfc6d47..6eeda26 100755 --- a/a-team/scripts.notary/cron_splitfunds +++ b/a-team/scripts.notary/cron_splitfunds @@ -26,7 +26,7 @@ if [ "$UTXOS" -lt "25" ] then SPLITAMNT=$(( 25 -$UTXOS )) echo -n " - SPLITFUNDING CHIPS: " - RESULT="$(acsplit CHIPS $SPLITAMNT)" + echo $SPLITAMNT #RESULT="$(acsplit CHIPS $SPLITAMNT)" print_txid $RESULT fi echo "" @@ -38,7 +38,7 @@ if [ "$UTXOS" -lt "50" ] then SPLITAMNT=$(( 50 -$UTXOS )) echo -n " - SPLITFUNDING KMD: " - RESULT="$(acsplit KMD 77)" + echo $SPLITAMNT #RESULT="$(acsplit KMD 77)" print_txid $RESULT fi echo "" @@ -50,7 +50,7 @@ if [ "$UTXOS" -lt "$TARGETAMNT" ] then splitamount $UTXOS echo -n " - SPLITFUNDING GAME: " - RESULT=$(curl --silent --url "http://127.0.0.1:7776" --data "{\"coin\":\"GAME\",\"agent\":\"iguana\",\"method\":\"splitfunds\",\"satoshis\":\"100000\",\"sendflag\":1,\"duplicates\":"$SPLITAMNT"}") + echo $SPLITAMNT #RESULT=$(curl --silent --url "http://127.0.0.1:7776" --data "{\"coin\":\"GAME\",\"agent\":\"iguana\",\"method\":\"splitfunds\",\"satoshis\":\"100000\",\"sendflag\":1,\"duplicates\":"$SPLITAMNT"}") print_txid $RESULT fi echo "" @@ -62,7 +62,7 @@ if [ "$UTXOS" -lt "$TARGETAMNT" ] then splitamount $UTXOS echo -n " - SPLITFUNDING VRSC: " - RESULT="$(acsplit VRSC $SPLITAMNT)" + echo $SPLITAMNT #RESULT="$(acsplit VRSC $SPLITAMNT)" print_txid $RESULT fi echo "" @@ -79,7 +79,7 @@ echo "Checking Other Coins" if [ "$UTXOS" -lt "$TARGETAMNT" ]; then splitamount $UTXOS echo -n " - SPLITFUNDING $chain: " - RESULT="$(acsplit $chain $SPLITAMNT)" + echo $SPLITAMNT #RESULT="$(acsplit $chain $SPLITAMNT)" print_txid $RESULT fi echo ""