File tree 3 files changed +1
-4
lines changed
concrete/campaign/shared/claim-to
3 files changed +1
-4
lines changed Original file line number Diff line number Diff line change @@ -99,7 +99,6 @@ abstract contract MerkleBase_Fork_Test is Fork_Test {
99
99
100
100
// Make the recipient as the caller.
101
101
setMsgSender (vars.leafToClaim.recipient);
102
- deal (vars.leafToClaim.recipient, 1 ether);
103
102
104
103
assertFalse (merkleBase.hasClaimed (vars.leafToClaim.index));
105
104
Original file line number Diff line number Diff line change @@ -78,8 +78,6 @@ abstract contract ClaimTo_Integration_Test is Integration_Test {
78
78
givenCallerNotClaimed
79
79
whenIndexValid
80
80
{
81
- vm.deal (address (1337 ), MIN_FEE_WEI);
82
-
83
81
setMsgSender (address (1337 ));
84
82
85
83
vm.expectRevert (Errors.SablierMerkleBase_InvalidProof.selector );
Original file line number Diff line number Diff line change @@ -57,7 +57,7 @@ contract Shared_Fuzz_Test is Integration_Test {
57
57
}
58
58
59
59
// Bound `msgValue` so that it's >= min USD fee.
60
- msgValue = bound (msgValue, merkleBase.calculateMinFeeWei (), 100 ether);
60
+ msgValue = bound (msgValue, merkleBase.calculateMinFeeWei (), 1 ether);
61
61
62
62
// If the claim amount for VCA airdrops is zero, skip this claim.
63
63
if (merkleBase == merkleVCA && merkleVCA.calculateClaimAmount (leafData.amount, getBlockTimestamp ()) == 0 ) {
You can’t perform that action at this time.
0 commit comments