|
@@ -43,13 +43,20 @@ async fn deposit_and_transfer() {
|
|
|
let fee = "fee".parse::<AccountId>().expect("account");
|
|
|
let ledger = get_asset_manager_and_ledger().await;
|
|
|
let usd: Asset = "USD/2".parse().expect("asset");
|
|
|
+ let btc: Asset = "BTC/8".parse().expect("asset");
|
|
|
|
|
|
deposit(&ledger, &source, usd.from_human("10").expect("amount")).await;
|
|
|
deposit(&ledger, &source, usd.from_human("20").expect("amount")).await;
|
|
|
+ deposit(&ledger, &source, btc.from_human(".2").expect("amount")).await;
|
|
|
|
|
|
+ let mut balances = ledger.get_balance(&source).await.expect("balance");
|
|
|
+ balances.sort_by(|a, b| a.asset().name.cmp(&b.asset().name));
|
|
|
assert_eq!(
|
|
|
- vec![usd.from_human("30").expect("amount")],
|
|
|
- ledger.get_balance(&source).await.expect("balance")
|
|
|
+ vec![
|
|
|
+ btc.from_human("0.2").expect("amount"),
|
|
|
+ usd.from_human("30").expect("amount")
|
|
|
+ ],
|
|
|
+ balances
|
|
|
);
|
|
|
|
|
|
ledger
|
|
@@ -65,9 +72,14 @@ async fn deposit_and_transfer() {
|
|
|
.await
|
|
|
.expect("valid tx");
|
|
|
|
|
|
+ let mut balances = ledger.get_balance(&source).await.expect("balance");
|
|
|
+ balances.sort_by(|a, b| a.asset().name.cmp(&b.asset().name));
|
|
|
assert_eq!(
|
|
|
- vec![usd.from_human("17").expect("amount"),],
|
|
|
- ledger.get_balance(&source).await.expect("balance")
|
|
|
+ vec![
|
|
|
+ btc.from_human("0.2").expect("amount"),
|
|
|
+ usd.from_human("17").expect("amount")
|
|
|
+ ],
|
|
|
+ balances
|
|
|
);
|
|
|
assert_eq!(
|
|
|
vec![usd.from_human("12.5").expect("amount"),],
|