[WIP] Updates to support web-wallet (#1160)

* updates to support web wallet workflow

* rustfmt

* functions to support wallet, error handling

* rustfmt

* rebase rustfmt

* test fix
This commit is contained in:
Yeastplume
2018-06-13 21:58:45 +01:00
committed by GitHub
parent 922b04608f
commit 88616fd341
22 changed files with 260 additions and 89 deletions
+1 -1
View File
@@ -201,7 +201,7 @@ impl OutputHandler {
);
let mut return_vec = vec![];
for i in start_height..end_height + 1 {
for i in (start_height..=end_height).rev() {
let res = self.outputs_at_height(i, commitments.clone(), include_rp);
if res.outputs.len() > 0 {
return_vec.push(res);