Skip to content

Commit

Permalink
fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
0xChqrles committed Sep 17, 2024
1 parent 94620f7 commit 4728bd5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion contracts/src/contracts/ramps/revolut/revolut.cairo
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ pub mod RevolutRamp {
let caller = get_caller_address();

// asserts liquidity amount is non null
assert(self.liquidity.read(liquidity_key).is_non_zero(), Errors::EMPTY_LIQUIDITY_retrievAL);
assert(self.liquidity.read(liquidity_key).is_non_zero(), Errors::EMPTY_LIQUIDITY_RETRIEVAL);
// asserts caller is the liquidity owner
assert(liquidity_key.owner == caller, Errors::WRONG_CALLER_ADDRESS);

Expand Down

0 comments on commit 4728bd5

Please sign in to comment.