commit c2bba221c321530e0f52ae2d6cc448c935a15971 parent 2a7639e4cef0c68d3e943d7c12b5cc90f2fae82c Author: Christian Grothoff <christian@grothoff.org> Date: Fri, 6 Feb 2026 20:47:36 +0100 need nonce and h_contract as well Diffstat:
| M | core/api-merchant.rst | | | 8 | ++++++++ |
1 file changed, 8 insertions(+), 0 deletions(-)
diff --git a/core/api-merchant.rst b/core/api-merchant.rst @@ -621,6 +621,14 @@ claim orders (say in a case where stocks are limited). // to affirm unclaiming of the order. unclaim_sig: EddsaSignature; + // Nonce to identify the wallet that claimed the order, + // public key matching ``unclaim_sig``. + nonce: EddsaPublicKey; + + // Hash of the order's contract terms, used + // to enable signature verification without + // database access. + h_contract: HashCode; }