Tests passing
This commit is contained in:
parent
fd8cea864e
commit
c42c10cb32
4 changed files with 12 additions and 5 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -1,2 +1,3 @@
|
||||||
rosetta-bitcoin
|
rosetta-bitcoin
|
||||||
bitcoin-data
|
bitcoin-data
|
||||||
|
cli-data
|
||||||
|
|
|
@ -28,7 +28,10 @@
|
||||||
"balance_tracking_disabled": false,
|
"balance_tracking_disabled": false,
|
||||||
"coin_tracking_disabled": false,
|
"coin_tracking_disabled": false,
|
||||||
"end_conditions": {
|
"end_conditions": {
|
||||||
"reconciliation_coverage": 0.95
|
"reconciliation_coverage": {
|
||||||
|
"coverage": 0.95,
|
||||||
|
"from_tip": true
|
||||||
|
}
|
||||||
},
|
},
|
||||||
"results_output_file": ""
|
"results_output_file": ""
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
request_funds(1) {
|
request_funds(1){
|
||||||
find_account{
|
find_account{
|
||||||
currency = {"symbol":"tBTC", "decimals":8};
|
currency = {"symbol":"tBTC", "decimals":8};
|
||||||
random_account = find_balance({
|
random_account = find_balance({
|
||||||
|
@ -142,7 +142,7 @@ transfer(10){
|
||||||
"amount":{"value":{{change_amount}},"currency":{{currency}}}
|
"amount":{"value":{{change_amount}},"currency":{{currency}}}
|
||||||
}
|
}
|
||||||
];
|
];
|
||||||
},
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
return_funds(10){
|
return_funds(10){
|
||||||
|
@ -213,5 +213,5 @@ return_funds(10){
|
||||||
"amount":{"value":{{recipient_amount}},"currency":{{currency}}}
|
"amount":{"value":{{recipient_amount}},"currency":{{currency}}}
|
||||||
}
|
}
|
||||||
];
|
];
|
||||||
},
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -43,7 +43,10 @@
|
||||||
"balance_tracking_disabled": false,
|
"balance_tracking_disabled": false,
|
||||||
"coin_tracking_disabled": false,
|
"coin_tracking_disabled": false,
|
||||||
"end_conditions": {
|
"end_conditions": {
|
||||||
"reconciliation_coverage": 0.95
|
"reconciliation_coverage": {
|
||||||
|
"coverage": 0.95,
|
||||||
|
"from_tip": true
|
||||||
|
}
|
||||||
},
|
},
|
||||||
"results_output_file": ""
|
"results_output_file": ""
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue