Skip to content

Commit

Permalink
Changes doc comment
Browse files Browse the repository at this point in the history
  • Loading branch information
jeremy-then committed Sep 18, 2024
1 parent cfb066e commit 546d9a1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/tests/2wp.js
Original file line number Diff line number Diff line change
Expand Up @@ -75,13 +75,13 @@ const testsExpectedToPass = [
description: 'should do pegin with multiple inputs from different accounts and one output to the federation',
initialBtcSenderBalancesInBtc: [ MINIMUM_PEGIN_VALUE_IN_BTC, MINIMUM_PEGIN_VALUE_IN_BTC, MINIMUM_PEGIN_VALUE_IN_BTC ], // Each sender is funded with some amount
btcSenderAmountsToSendToFed: [ MINIMUM_PEGIN_VALUE_IN_BTC, MINIMUM_PEGIN_VALUE_IN_BTC, MINIMUM_PEGIN_VALUE_IN_BTC ], // Each sender decides how much to send to the federation
outputsToFed: [ MINIMUM_PEGIN_VALUE_IN_BTC * 3 ], // Example of a pegin with multiple outputs to fed
outputsToFed: [ MINIMUM_PEGIN_VALUE_IN_BTC * 3 ],
},
{
description: 'should do pegin with multiple inputs from different accounts and two outputs to the federation',
initialBtcSenderBalancesInBtc: [ MINIMUM_PEGIN_VALUE_IN_BTC, MINIMUM_PEGIN_VALUE_IN_BTC, MINIMUM_PEGIN_VALUE_IN_BTC ],
btcSenderAmountsToSendToFed: [ MINIMUM_PEGIN_VALUE_IN_BTC, MINIMUM_PEGIN_VALUE_IN_BTC, MINIMUM_PEGIN_VALUE_IN_BTC ],
outputsToFed: [ MINIMUM_PEGIN_VALUE_IN_BTC, MINIMUM_PEGIN_VALUE_IN_BTC * 2 ],
outputsToFed: [ MINIMUM_PEGIN_VALUE_IN_BTC, MINIMUM_PEGIN_VALUE_IN_BTC * 2 ], // Example of a pegin with multiple outputs to fed
},
];

Expand Down

0 comments on commit 546d9a1

Please sign in to comment.