Skip to content

Commit

Permalink
Merge pull request #1 from sablier-labs/fix-exponent
Browse files Browse the repository at this point in the history
fix: fix exponent
  • Loading branch information
andreivladbrg authored Oct 11, 2023
2 parents ef8c48b + ab5a2be commit 5684a88
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion script/ExactlySchedule.s.sol
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ contract ExactlyScheduleScript is BaseScript {

function getSegment(uint128 amount, uint40 milestone) public pure returns (LockupDynamic.Segment memory) {
LockupDynamic.Segment memory segment =
LockupDynamic.Segment({ amount: amount, milestone: milestone, exponent: ud2x18(1) });
LockupDynamic.Segment({ amount: amount, milestone: milestone, exponent: ud2x18(1e18) });
return segment;
}

Expand Down

0 comments on commit 5684a88

Please sign in to comment.