This sends a transaction from your wallet to the poidh contract. The contract itself
enforces that only the bounty's issuer can start a payout, so nobody else can use this on your
bounty. Read the summary this page prints before you sign it — it shows the exact
function, arguments and contract address. Source is one file:
view-source of this page.
What this actually calls
poidh has two payout paths and the contract picks between them on a sticky flag,
everHadExternalContributor:
- Solo — nobody but you ever funded it.
acceptClaim(bountyId, claimId)pays the claimant straight away. - Open — somebody else contributed at some point, even if they have since
withdrawn.
acceptClaimreverts withNotSoloBounty(). You callsubmitClaimForVote(bountyId, claimId), which opens a two-day window and counts your own stake as a yes. Contributors callvoteClaim(bountyId, bool). After the deadline anyone may callresolveVote(bountyId), and if yes beats half the total weight the claim is paid.
The queue of bounties currently sitting in this state is at the poidh payout queue.