Browse Source

Fix nits on Transaction doc

patch-2
Esteban Ordano 10 years ago
parent
commit
33d0bc0255
  1. 4
      docs/Transaction.md

4
docs/Transaction.md

@ -75,7 +75,7 @@ output.
```javascript
var multiSigTx = new Transaction()
.fromMultisig(utxo, publicKeys)
.fromMultisig(utxo, publicKeys, threshold)
.spendAllTo(address, amount)
.sign(myKeys);
@ -113,7 +113,7 @@ There are some nits that you should have in mind when using this API:
We have implemented partially Merge Avoidance for the change
addresses of a transaction with a simple API:
```
```javascript
var mergeAvoidance = new Transaction.Strategy.MergeAvoidance({
change: ['1bitcoinChange...', '3bitcoinChange...']
});

Loading…
Cancel
Save