summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatt Corallo <matt@bluematt.me>2012-02-07 15:45:06 -0500
committerMatt Corallo <matt@bluematt.me>2012-02-07 15:51:57 -0500
commitf8c3c7554d0883c75fd973881da57161d6f90394 (patch)
tree21c3dd04a7e0cea44f335263eddd722cb31e538c
parent6e2d2667f3a3248577b92578168de82c917ca8a2 (diff)
downloadbips-f8c3c7554d0883c75fd973881da57161d6f90394.tar.xz
Clarify the req- prefix a bit.
req- can be applied to any parameter, not just ones which are specified as required.
-rw-r--r--bip-0021.md5
1 files changed, 3 insertions, 2 deletions
diff --git a/bip-0021.md b/bip-0021.md
index 34a40cd..fa77e4b 100644
--- a/bip-0021.md
+++ b/bip-0021.md
@@ -33,12 +33,13 @@ Graphical bitcoin clients SHOULD register themselves as the handler for the "bit
bitcoinurn = "bitcoin:" bitcoinaddress [ "?" bitcoinparams ]
bitcoinaddress = base58 *base58
bitcoinparams = *bitcoinparam
- bitcoinparam = amountparam | labelparam | messageparam | otherparam | reqparam
+ standardparam = amountparam | labelparam | messageparam | otherparam
+ bitcoinparam = standardparam | reqparam
amountparam = "amount=" *digit [ "." *digit ]
labelparam = "label=" *pchar
messageparam = "message=" *pchar
otherparam = pchar *pchar "=" *pchar
- reqparam = "req-" pchar *pchar "=" *pchar
+ reqparam = "req-" standardparam
=== Query Keys ===