1
0
mirror of https://github.com/bitcoin/bips.git synced 2025-05-12 12:03:29 +00:00

Merge pull request #60 from aalness/aalness_bip70

Validate a payment request is still valid prior to payment
This commit is contained in:
Gavin Andresen 2014-05-20 13:51:39 -04:00
commit 6711d299b3

View File

@ -159,6 +159,7 @@ after the time of the payment request. After that time has expired, parties must
If the customer authorizes payment, then the Bitcoin client:
# Creates and signs one or more transactions that satisfy (pay in full) PaymentDetails.outputs
# Validate that customer's system unix time (UTC) is still before PaymentDetails.expires. If it is not, the payment should be cancelled.
# Broadcast the transactions on the Bitcoin p2p network.
# If PaymentDetails.payment_url is specified, POST a Payment message to that URL. The Payment message is serialized and sent as the body of the POST request.