Browse Source

Set correct UTXO size in utxosplitter.sh for EMC2

master
Luke Childs 6 years ago
parent
commit
0a8121a542
  1. 3
      utxosplitter.sh

3
utxosplitter.sh

@ -43,6 +43,9 @@ fi
if [[ ${coin} = "GAME" ]]; then
satoshis=100000
fi
if [[ ${coin} = "EMC2" ]]; then
satoshis=100000
fi
amount=$(calc $satoshis/100000000)
unlocked_utxos=$(${cli} listunspent | jq -r '.[].amount' | grep ${amount} | wc -l)

Loading…
Cancel
Save