- Avoid ambiguous language regarding when transactions confirm
- Elaborate on downgrading warning
- Other minor language improvements
- Clarify watch-only behaviour
Github-Pull: #5534
0.10
Luke Dashjr10 years agocommitted byWladimir J. van der Laan
Using wildcards will result in the rule being rejected with the following error in debug.log:
@ -180,8 +182,8 @@ of times. While using shared hosts and reusing keys are inadvisable
@@ -180,8 +182,8 @@ of times. While using shared hosts and reusing keys are inadvisable
for other reasons, it's a better practice to avoid the exposure.
OpenSSL has code in their source repository for derandomization
and reduction in timing leaks, and we've eagerly wanted to use
it for a long time but this functionality has still not made its
and reduction in timing leaks that we've eagerly wanted to use for a
long time, but this functionality has still not made its
way into a released version of OpenSSL. Libsecp256k1 achieves
significantly stronger protection: As far as we're aware this is
the only deployed implementation of constant time signing for
@ -191,11 +193,11 @@ than the implementation in OpenSSL.
@@ -191,11 +193,11 @@ than the implementation in OpenSSL.
[1] https://eprint.iacr.org/2014/161.pdf
Watch-only addresses in the wallet
----------------------------------
Watch-only wallet support
-------------------------
The wallet can now track transactions to addresses (or scripts) for which you
do not have the private keys.
The wallet can now track transactions to and from wallets for which you know
all addresses (or scripts), even without the private keys.
This can be used to track payments without needing the private keys online on a
possibly vulnerable system. In addition, it can help for (manual) construction
@ -204,17 +206,18 @@ of multisig transactions where you are only one of the signers.
@@ -204,17 +206,18 @@ of multisig transactions where you are only one of the signers.
One new RPC, `importaddress`, is added which functions similarly to
`importprivkey`, but instead takes an address or script (in hexadecimal) as
argument. After using it, outputs credited to this address or script are
considered to be yours.
considered to be received, and transactions consuming these outputs will be
considered to be sent.
The following RPCs have optional support for watch-only addresses:
The following RPCs have optional support for watch-only: