@t2000/sdk 10.30.1 → 10.30.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.js CHANGED
@@ -3667,7 +3667,6 @@ function jobActionsFor(job, caller, nowMs = Date.now()) {
3667
3667
  const actions = [];
3668
3668
  if (job.state === "funded") {
3669
3669
  if (isSeller && nowMs <= job.deliverByMs) actions.push("deliver");
3670
- if (isBuyer) actions.push("release");
3671
3670
  if (nowMs > job.deliverByMs) actions.push("refund");
3672
3671
  } else if (job.state === "delivered") {
3673
3672
  const windowClosesMs = (job.deliveredAtMs ?? 0) + job.reviewWindowMs;