From fc704fab8914d8fba6e9642f81147e7cfec4e42c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ond=C5=99ej=20Sojka?= Date: Mon, 27 Nov 2023 16:37:00 +0000 Subject: [PATCH] Polish scarb fmt --- src/vesting.cairo | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/vesting.cairo b/src/vesting.cairo index 765e2423..73f2b480 100644 --- a/src/vesting.cairo +++ b/src/vesting.cairo @@ -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 + } + ) } } }