bond to override lock limit

This commit is contained in:
hueso
2024-03-03 21:58:41 -03:00
parent c25fa24b2f
commit 9b6617a702
7 changed files with 91 additions and 9 deletions

View File

@@ -94,3 +94,9 @@ uint256 REPUTATION_LOWERBOUND
uint256 LOCKAMOUNT_UPPERBOUND
```
### BOND_DIVISOR
```solidity
uint256 BOND_DIVISOR
```

View File

@@ -13,6 +13,7 @@ struct Lock {
contract ERC20 token;
address buyerAddress;
address seller;
bool bond;
}
```