Browse Source

scripts/txs: add 0x and randomness

pull/588/head
Ethan Buchman 7 years ago
parent
commit
d49a5166ac
1 changed files with 4 additions and 4 deletions
  1. +4
    -4
      scripts/txs/random.sh

+ 4
- 4
scripts/txs/random.sh View File

@ -10,10 +10,10 @@ PORT=$2
for i in `seq 1 $N`; do
# store key value pair
KEY="abcd$i"
VALUE="dcba$i"
echo "$KEY:$VALUE"
curl 127.0.0.1:$PORT/broadcast_tx_sync?tx=\"$(toHex $KEY=$VALUE)\"
KEY=$(head -c 10 /dev/urandom)
VALUE="$i"
echo $(toHex $KEY=$VALUE)
curl 127.0.0.1:$PORT/broadcast_tx_sync?tx=0x$(toHex $KEY=$VALUE)
done

Loading…
Cancel
Save