Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

outputs do not need to be ordered #11

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions bip-0270.mediawiki
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ PaymentRequest {
{|
| network || This field is required and always set to "bitcoin". If set to any other value besides "bitcoin", no wallet should process the payments. For test purposes, one can set this field to "test" which will ensure that no wallet will accidentally send a payment to what might be invalid or test addresses.
|-
| outputs || One or more outputs where Bitcoins are to be sent.
| outputs || One or more outputs where Bitcoins are to be sent. Outputs are NOT required to be returned in the same order when the transaction is built.
|-
| creationTimestamp || Unix timestamp (seconds since 1-Jan-1970 UTC) when the PaymentRequest was created.
|-
Expand Down Expand Up @@ -176,7 +176,7 @@ Payment {
{|
| merchantData || copied from PaymentDetails.merchantData. Payment hosts may use invoice numbers or any other data they require to match Payments to PaymentRequests. Note that malicious clients may modify the merchantData, so should be authenticated in some way (for example, signed with a payment host-only key). Maximum length is 10000 characters.
|-
| transaction || A valid, signed Bitcoin transaction that fully pays the PaymentRequest. The transaction is hex-encoded and must NOT be prefixed with "0x".
| transaction || A valid, signed Bitcoin transaction that fully pays the PaymentRequest. The transaction is hex-encoded and must NOT be prefixed with "0x". The transaction does NOT need to return the outputs in the same order as the PaymentRequest.
|-
| refundTo || A paymail to send a refund to should a refund be necessary. Maximum length is 100 characters.
|-
Expand Down