blob: b5b749caecedfbf924da861ee681e68644fc6185 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#!/bin/bash
set -eo pipefail
source config
first="1"
second="2"
if [[ ! -z $1 ]] && [[ ! -z $2 ]]; then
first=$1
second=$2
fi
info "sending get-consistency-proof request"
curl -G -d "first=$first" -d "second=$second" $base_url/get-consistency-proof
newline
# TODO: try decoding and verifying proof
|