From 86c307f9674102a7f4345ff9fab4db99a7a8bd1e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Igor=20Ron=C4=8Devi=C4=87?= <57319163+igorroncevic@users.noreply.github.com> Date: Mon, 4 May 2026 18:42:36 +0200 Subject: [PATCH] fix: update known issues related to orders with zero amounts --- README.md | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/README.md b/README.md index 35b50366..af01f8fe 100644 --- a/README.md +++ b/README.md @@ -124,12 +124,8 @@ A summary of coverage results are printed out to console. More detailed informat ## Known issues -If a user creates an order with: -- zero sell amount -- zero buy amount -- partially fillable set to false +If a user creates an order with `sellAmount = 0` or `buyAmount = 0`, then this order could be executed an arbitrary amount of times instead of just a single time. -then this order could be executed an arbitrary amount of times instead of just a single time. This means that any solver could drain the fee amount from the user until not enough funds are available anymore. We recommend to never sign orders of this form and, if developing a contract that creates orders on behalf of other users, make sure at a contract level that such orders cannot be created.