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.
 
 

11 lines
283 B

#!/bin/bash
coin=$1
duplicates=$2
utxo_size=10000
if [[ ${coin} = "GAME" ]]; then
utxo_size=100000
fi
curl http://127.0.0.1:7776 --data "{\"coin\":\"${coin}\",\"agent\":\"iguana\",\"method\":\"splitfunds\",\"satoshis\":${utxo_size},\"sendflag\":1,\"duplicates\":${duplicates}}"