Skip to content

Commit

Permalink
[FOLD] Fix initialization list, remove unneeded logging
Browse files Browse the repository at this point in the history
  • Loading branch information
gregtatcam committed Jan 22, 2024
1 parent 3ce2cc2 commit c3c68fc
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/test/app/MPToken_test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -789,9 +789,9 @@ class MPToken_test : public beast::unit_test::suite

// Transfer fee is 10%
mptAlice.create(
{.ownerCount = 1,
{.transferFee = 10'000,
.ownerCount = 1,
.holderCount = 0,
.transferFee = 10'000,
.flags = tfMPTCanTransfer});

// Holders create MPToken
Expand All @@ -809,7 +809,6 @@ class MPToken_test : public beast::unit_test::suite
mptAlice.pay(bob, carol, 1'000);

// Payment between the holders. The sender pays 10% transfer fee.
std::cout << "test transfer" << std::endl;
mptAlice.pay(bob, carol, 100);
}
}
Expand Down

0 comments on commit c3c68fc

Please sign in to comment.