File tree Expand file tree Collapse file tree 1 file changed +1
-1
lines changed
contracts/vesting.tmy/src Expand file tree Collapse file tree 1 file changed +1
-1
lines changed Original file line number Diff line number Diff line change @@ -176,7 +176,7 @@ namespace vestingtoken
176176 // Checks to verify new allocation is valid
177177 eosio::check (iter->tokens_allocated .amount == old_amount.amount , " Old amount does not match existing allocation" );
178178 eosio::check (iter->vesting_category_type == old_category_id, " Old category does not match existing allocation" );
179- eosio::check (iter->tokens_claimed .amount < new_amount.amount , " New amount is less than the amount already claimed" );
179+ eosio::check (iter->tokens_claimed .amount <= new_amount.amount , " New amount is less than the amount already claimed" );
180180
181181 // Modify the table row data, and update the table
182182 vesting_table.modify (iter, get_self (), [&](auto &row)
You can’t perform that action at this time.
0 commit comments