Skip to content

Commit

Permalink
fix: linter
Browse files Browse the repository at this point in the history
  • Loading branch information
ericnordelo committed Nov 12, 2024
1 parent fb1dd0c commit 32630fa
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion packages/finance/src/vesting/vesting.cairo
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,9 @@ pub mod VestingComponent {

let beneficiary = get_dep_component!(@self, Ownable).owner();
let token_dispatcher = IERC20Dispatcher { contract_address: token };
assert(token_dispatcher.transfer(beneficiary, amount), Errors::TOKEN_TRANSFER_FAILED);
assert(
token_dispatcher.transfer(beneficiary, amount), Errors::TOKEN_TRANSFER_FAILED
);
}
amount
}
Expand Down

0 comments on commit 32630fa

Please sign in to comment.