commit f1096448038a42897d57333c95a2686a71fca587 parent 2953525355a1b8d7c667c535f48c1e0b628d3f61 Author: Florian Dold <florian@dold.me> Date: Thu, 12 Aug 2021 20:03:55 +0200 comment Diffstat:
| M | merchant-spec/public-orders-get.ts | | | 2 | ++ |
1 file changed, 2 insertions(+), 0 deletions(-)
diff --git a/merchant-spec/public-orders-get.ts b/merchant-spec/public-orders-get.ts @@ -52,6 +52,8 @@ function handlePublicOrdersGet(mos: MerchantOrderStore, req: Req): Resp { } const authMissing = !!req.contractHash && !!req.claimToken; + // For this endpoint, when the order does not have a claim token, + // the order status can be accessed *without* h_contract. const authOk = ord.contractHash === req.contractHash || (ord.requireClaimToken && ord.claimToken === req.claimToken) ||