From 5a684c2fd637e437e1f01f359a98cc342a42ecbd Mon Sep 17 00:00:00 2001 From: Roman Zeyde Date: Sat, 14 May 2022 09:06:02 +0300 Subject: [PATCH] Fix CI assertion for `getbalance` response --- tests/run.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/run.sh b/tests/run.sh index 896eb72..bf3f483 100755 --- a/tests/run.sh +++ b/tests/run.sh @@ -75,7 +75,7 @@ echo " * getaddresshistory" test "`$EL getaddresshistory $NEW_ADDR | jq -c .`" == "[{\"fee\":100000,\"height\":0,\"tx_hash\":\"$TXID\"}]" echo " * getbalance" -test "`$EL getbalance | jq -c .`" == '{"confirmed":"550","unconfirmed":"-0.001","unmatured":"4950"}' +test "`$EL getbalance | jq -c .`" == '{"confirmed":"549.999","unmatured":"4950"}' echo "Generating bitcoin block..." $BTC generatetoaddress 1 $MINING_ADDR > /dev/null