Skip to content

Commit

Permalink
Polish scarb fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
tensojka committed Nov 27, 2023
1 parent 60a6275 commit fc704fa
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion src/vesting.cairo
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,12 @@ mod vesting {
) {
// TODO: check if caller is eligible to add vesting milestone or if this is part of a proposal
self.milestone.write((vested_timestamp, grantee), amount);
self.emit(VestingMilestoneAdded { grantee: grantee, timestamp: vesting_timestamp, amount: u128})
self
.emit(
VestingMilestoneAdded {
grantee: grantee, timestamp: vesting_timestamp, amount: u128
}
)
}
}
}

0 comments on commit fc704fa

Please sign in to comment.