Tests passing

This commit is contained in:
Patrick O'Grady 2020-10-26 18:43:05 -07:00
parent fd8cea864e
commit c42c10cb32
No known key found for this signature in database
GPG key ID: 8DE11C985C0C8D85
4 changed files with 12 additions and 5 deletions

1
.gitignore vendored
View file

@ -1,2 +1,3 @@
rosetta-bitcoin
bitcoin-data
cli-data

View file

@ -28,7 +28,10 @@
"balance_tracking_disabled": false,
"coin_tracking_disabled": false,
"end_conditions": {
"reconciliation_coverage": 0.95
"reconciliation_coverage": {
"coverage": 0.95,
"from_tip": true
}
},
"results_output_file": ""
}

View file

@ -1,4 +1,4 @@
request_funds(1) {
request_funds(1){
find_account{
currency = {"symbol":"tBTC", "decimals":8};
random_account = find_balance({
@ -142,7 +142,7 @@ transfer(10){
"amount":{"value":{{change_amount}},"currency":{{currency}}}
}
];
},
}
}
return_funds(10){
@ -213,5 +213,5 @@ return_funds(10){
"amount":{"value":{{recipient_amount}},"currency":{{currency}}}
}
];
},
}
}

View file

@ -43,7 +43,10 @@
"balance_tracking_disabled": false,
"coin_tracking_disabled": false,
"end_conditions": {
"reconciliation_coverage": 0.95
"reconciliation_coverage": {
"coverage": 0.95,
"from_tip": true
}
},
"results_output_file": ""
}