You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
422 B

#!/bin/bash
cd "${BASH_SOURCE%/*}" || exit
coin=$1
duplicates=$2
iguana_port=$(./getiguanaport.sh)
utxo_size=10000
if [[ ${coin} = "GAME" ]]; then
utxo_size=100000
fi
if [[ ${coin} = "EMC2" ]]; then
utxo_size=100000
fi
curl "http://127.0.0.1:$iguana_port" --silent --data "{\"coin\":\"${coin}\",\"agent\":\"iguana\",\"method\":\"splitfunds\",\"satoshis\":${utxo_size},\"sendflag\":1,\"duplicates\":${duplicates}}"