Skip to content

Commit

Permalink
Update err msg in validate_trade_input
Browse files Browse the repository at this point in the history
  • Loading branch information
Chepelau committed Nov 30, 2023
1 parent 05634e9 commit e64646a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/amm_core/trading.cairo
Original file line number Diff line number Diff line change
Expand Up @@ -309,7 +309,7 @@ mod Trading {
assert(current_block_time < maturity, 'VTI - opt already expired');
assert(
current_block_time < (maturity - STOP_TRADING_BEFORE_MATURITY_SECONDS),
'VTI - Trading is no mo'
'VTI - Trading is stopped'
);
} else {
let is_not_ripe = current_block_time <= maturity;
Expand Down

0 comments on commit e64646a

Please sign in to comment.