Fix nits on Transaction doc

This commit is contained in:
Esteban Ordano 2014-11-21 19:52:14 -03:00
parent b53d5442ea
commit 33d0bc0255
1 changed files with 2 additions and 2 deletions

View File

@ -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...']
});