HOTFIX: Adjusted minimum spend limit

This commit is contained in:
Filipe Soccol
2022-12-16 10:04:01 -03:00
parent 0b0f2a667f
commit 122044a1e5
5 changed files with 11 additions and 11 deletions

View File

@@ -199,7 +199,7 @@ contract P2PIX is
// Halt execution and output `lockID`.
return lockID;
} else {
if (l.amount <= 1e2) {
if (l.amount <= 100 ether) {
_addLock(lockID, l, d);
// Halt execution and output `lockID`.
return lockID;