Skip to content

Commit

Permalink
Consistent token limit condition
Browse files Browse the repository at this point in the history
  • Loading branch information
izyak committed Aug 5, 2022
1 parent 3ab15df commit c75e9b7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion solidity/bts/contracts/BTSPeriphery.sol
Original file line number Diff line number Diff line change
Expand Up @@ -504,6 +504,6 @@ contract BTSPeriphery is Initializable, IBTSPeriphery {
uint256 _value
) public view override {
require(!blacklist[_user],"Blacklisted");
require(tokenLimit[_coinName] >= _value,"LimitExceed");
require(tokenLimit[_coinName] > _value ,"LimitExceed");
}
}

0 comments on commit c75e9b7

Please sign in to comment.