|
@@ -13,6 +13,7 @@ async fn pending_deposit_and_failure() {
|
|
"processing".into(),
|
|
"processing".into(),
|
|
vec![],
|
|
vec![],
|
|
"Test".to_owned(),
|
|
"Test".to_owned(),
|
|
|
|
+ None,
|
|
)
|
|
)
|
|
.await
|
|
.await
|
|
.expect("valid tx")
|
|
.expect("valid tx")
|
|
@@ -69,6 +70,7 @@ async fn deposit_and_transfer() {
|
|
(dest.clone(), usd.from_human("12.5").expect("amount")),
|
|
(dest.clone(), usd.from_human("12.5").expect("amount")),
|
|
(fee.clone(), usd.from_human("0.5").expect("amount")),
|
|
(fee.clone(), usd.from_human("0.5").expect("amount")),
|
|
],
|
|
],
|
|
|
|
+ None,
|
|
)
|
|
)
|
|
.await
|
|
.await
|
|
.expect("valid tx");
|
|
.expect("valid tx");
|
|
@@ -117,6 +119,7 @@ async fn balance_decreases_while_pending_spending_and_confirm() {
|
|
(dest.clone(), usd.from_human("12.5").expect("amount")),
|
|
(dest.clone(), usd.from_human("12.5").expect("amount")),
|
|
(fee.clone(), usd.from_human("0.5").expect("amount")),
|
|
(fee.clone(), usd.from_human("0.5").expect("amount")),
|
|
],
|
|
],
|
|
|
|
+ None,
|
|
)
|
|
)
|
|
.await
|
|
.await
|
|
.expect("valid tx")
|
|
.expect("valid tx")
|
|
@@ -174,6 +177,7 @@ async fn balance_decreases_while_pending_spending_and_cancel() {
|
|
(dest.clone(), usd.from_human("12.5").expect("amount")),
|
|
(dest.clone(), usd.from_human("12.5").expect("amount")),
|
|
(fee.clone(), usd.from_human("0.5").expect("amount")),
|
|
(fee.clone(), usd.from_human("0.5").expect("amount")),
|
|
],
|
|
],
|
|
|
|
+ None,
|
|
)
|
|
)
|
|
.await
|
|
.await
|
|
.expect("valid tx")
|
|
.expect("valid tx")
|
|
@@ -230,6 +234,7 @@ async fn balance_decreases_while_pending_spending_and_failed() {
|
|
(dest.clone(), usd.from_human("12.5").expect("amount")),
|
|
(dest.clone(), usd.from_human("12.5").expect("amount")),
|
|
(fee.clone(), usd.from_human("0.5").expect("amount")),
|
|
(fee.clone(), usd.from_human("0.5").expect("amount")),
|
|
],
|
|
],
|
|
|
|
+ None,
|
|
)
|
|
)
|
|
.await
|
|
.await
|
|
.expect("valid tx")
|
|
.expect("valid tx")
|