aboutsummaryrefslogtreecommitdiffstats
path: root/src/ynab/client.rs
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2019-08-11 19:47:39 -0400
committerJesse Luehrs <doy@tozt.net>2019-08-11 19:47:39 -0400
commit430b17c92ee8e15bacce2c058d3e56f187da5fc3 (patch)
treee4059834d85cc8202fed56840a9d2778c4b53866 /src/ynab/client.rs
parent909badee565c8e5164890b71da6a03b9efe16b28 (diff)
downloadynab-reimbursements-430b17c92ee8e15bacce2c058d3e56f187da5fc3.tar.gz
ynab-reimbursements-430b17c92ee8e15bacce2c058d3e56f187da5fc3.zip
validate reconciled amounts, and also handle split transactions
Diffstat (limited to 'src/ynab/client.rs')
-rw-r--r--src/ynab/client.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ynab/client.rs b/src/ynab/client.rs
index a2fbdb3..852481a 100644
--- a/src/ynab/client.rs
+++ b/src/ynab/client.rs
@@ -26,6 +26,6 @@ impl Client {
.unwrap()
.data
.budget;
- super::budget::Budget::new(&self.api, full_budget)
+ super::budget::Budget::new(full_budget)
}
}