Skip to content

Commit

Permalink
test: include recipient in StreamLT, StreamLL structs (#304)
Browse files Browse the repository at this point in the history
  • Loading branch information
smol-ninja authored Mar 14, 2024
1 parent f862f5f commit 002cad9
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 0 deletions.
Binary file modified bun.lockb
Binary file not shown.
1 change: 1 addition & 0 deletions test/fork/merkle-lockup/MerkleLockupLL.t.sol
Original file line number Diff line number Diff line change
Expand Up @@ -165,6 +165,7 @@ abstract contract MerkleLockupLL_Fork_Test is Fork_Test {
isDepleted: false,
isStream: true,
isTransferable: defaults.TRANSFERABLE(),
recipient: vars.recipients[params.posBeforeSort],
sender: params.admin,
startTime: uint40(block.timestamp),
wasCanceled: false
Expand Down
1 change: 1 addition & 0 deletions test/fork/merkle-lockup/MerkleLockupLT.t.sol
Original file line number Diff line number Diff line change
Expand Up @@ -165,6 +165,7 @@ abstract contract MerkleLockupLT_Fork_Test is Fork_Test {
isDepleted: false,
isStream: true,
isTransferable: defaults.TRANSFERABLE(),
recipient: vars.recipients[params.posBeforeSort],
sender: params.admin,
startTime: uint40(block.timestamp),
tranches: defaults.tranches({ totalAmount: vars.amounts[params.posBeforeSort] }),
Expand Down
1 change: 1 addition & 0 deletions test/integration/merkle-lockup/ll/claim/claim.t.sol
Original file line number Diff line number Diff line change
Expand Up @@ -118,6 +118,7 @@ contract Claim_Integration_Test is MerkleLockup_Integration_Test {
isDepleted: false,
isStream: true,
isTransferable: defaults.TRANSFERABLE(),
recipient: users.recipient1,
sender: users.admin,
startTime: uint40(block.timestamp),
wasCanceled: false
Expand Down
2 changes: 2 additions & 0 deletions test/integration/merkle-lockup/lt/claim/claim.t.sol
Original file line number Diff line number Diff line change
Expand Up @@ -160,6 +160,7 @@ contract Claim_Integration_Test is Merkle, MerkleLockup_Integration_Test {
isDepleted: false,
isStream: true,
isTransferable: defaults.TRANSFERABLE(),
recipient: users.recipient1,
sender: users.admin,
startTime: uint40(block.timestamp),
tranches: defaults.tranches(claimAmount),
Expand Down Expand Up @@ -189,6 +190,7 @@ contract Claim_Integration_Test is Merkle, MerkleLockup_Integration_Test {
isDepleted: false,
isStream: true,
isTransferable: defaults.TRANSFERABLE(),
recipient: users.recipient1,
sender: users.admin,
startTime: uint40(block.timestamp),
tranches: tranches,
Expand Down

0 comments on commit 002cad9

Please sign in to comment.