Sha256: 324ab8f65832531b8830975917e01722458f7beee7864555d951b7f490f8293e

Contents?: true

Size: 1.07 KB

Versions: 10

Compression:

Stored size: 1.07 KB

Contents

#!/bin/bash
set -x
set -e
shopt -s expand_aliases

alias zold="$1 --ignore-global-config --trace --ignore-this-stupid-option --network=test"

port=`python -c 'import socket; s=socket.socket(); s.bind(("", 0)); print(s.getsockname()[1]); s.close()'`

mkdir server
cd server
zold node --trace --invoice=NOPREFIX@ffffffffffffffff \
  --host=localhost --port=${port} --bind-port=${port} \
  --threads=0 --standalone &
pid=$!
trap "kill -9 $pid" EXIT
cd ..

while ! nc -z localhost ${port}; do
  sleep 0.5
  ((c++)) && ((c==20)) && break
done

zold remote clean
zold remote add localhost ${port}
zold remote trim
zold remote show

zold --public-key=id_rsa.pub create 0000000000000000
target=`zold create --public-key=id_rsa.pub`
invoice=`zold invoice ${target}`
zold pay --private-key=id_rsa 0000000000000000 ${invoice} 14.99 'To save the world!'
zold propagate 0000000000000000
zold show
zold show 0000000000000000

zold remote show
zold push 0000000000000000 --sync
zold fetch 0000000000000000 --ignore-score-weakness
zold diff 0000000000000000
zold merge 0000000000000000
zold clean 0000000000000000

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
zold-0.11.15 fixtures/scripts/push-and-pull.sh
zold-0.11.14 fixtures/scripts/push-and-pull.sh
zold-0.11.13 fixtures/scripts/push-and-pull.sh
zold-0.11.12 fixtures/scripts/push-and-pull.sh
zold-0.11.11 fixtures/scripts/push-and-pull.sh
zold-0.11.10 fixtures/scripts/push-and-pull.sh
zold-0.11.9 fixtures/scripts/push-and-pull.sh
zold-0.11.8 fixtures/scripts/push-and-pull.sh
zold-0.11.7 fixtures/scripts/push-and-pull.sh
zold-0.11.6 fixtures/scripts/push-and-pull.sh