Skip to content

Commit

Permalink
reduce fees in test
Browse files Browse the repository at this point in the history
  • Loading branch information
sdbondi committed Apr 29, 2022
1 parent 530e956 commit ce6f92c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions base_layer/wallet/tests/transaction_service_tests/service.rs
Original file line number Diff line number Diff line change
Expand Up @@ -546,7 +546,7 @@ fn manage_single_transaction() {
.block_on(alice_ts.send_transaction(
bob_node_identity.public_key().clone(),
value,
MicroTari::from(20),
MicroTari::from(4),
"".to_string()
))
.is_err());
Expand All @@ -557,7 +557,7 @@ fn manage_single_transaction() {
.block_on(alice_ts.send_transaction(
bob_node_identity.public_key().clone(),
value,
MicroTari::from(20),
MicroTari::from(4),
message,
))
.expect("Alice sending tx");
Expand Down

0 comments on commit ce6f92c

Please sign in to comment.