README: consistent bitcoin case
This commit is contained in:
parent
4d35d0cf08
commit
870444dcf6
1 changed files with 3 additions and 3 deletions
|
@ -65,7 +65,7 @@ These examples assume you are running bitcoinjs-lib in the browser.
|
||||||
|
|
||||||
```javascript
|
```javascript
|
||||||
|
|
||||||
key = Bitcoin.ECKey.makeRandom()
|
key = bitcoin.ECKey.makeRandom()
|
||||||
|
|
||||||
// Print your private key (in WIF format)
|
// Print your private key (in WIF format)
|
||||||
console.log(key.toWIF())
|
console.log(key.toWIF())
|
||||||
|
@ -79,7 +79,7 @@ console.log(key.pub.getAddress().toString())
|
||||||
### Creating a Transaction
|
### Creating a Transaction
|
||||||
|
|
||||||
```javascript
|
```javascript
|
||||||
tx = new Bitcoin.Transaction()
|
tx = new bitcoin.Transaction()
|
||||||
|
|
||||||
// Add the input (who is paying) of the form [previous transaction hash, index of the output to use]
|
// Add the input (who is paying) of the form [previous transaction hash, index of the output to use]
|
||||||
tx.addInput("aa94ab02c182214f090e99a0d57021caffd0f195a81c24602b1028b130b63e31", 0)
|
tx.addInput("aa94ab02c182214f090e99a0d57021caffd0f195a81c24602b1028b130b63e31", 0)
|
||||||
|
@ -88,7 +88,7 @@ tx.addInput("aa94ab02c182214f090e99a0d57021caffd0f195a81c24602b1028b130b63e31",
|
||||||
tx.addOutput("1Gokm82v6DmtwKEB8AiVhm82hyFSsEvBDK", 15000)
|
tx.addOutput("1Gokm82v6DmtwKEB8AiVhm82hyFSsEvBDK", 15000)
|
||||||
|
|
||||||
// Initialize a private key using WIF
|
// Initialize a private key using WIF
|
||||||
key = Bitcoin.ECKey.fromWIF("L1uyy5qTuGrVXrmrsvHWHgVzW9kKdrp27wBC7Vs6nZDTF2BRUVwy")
|
key = bitcoin.ECKey.fromWIF("L1uyy5qTuGrVXrmrsvHWHgVzW9kKdrp27wBC7Vs6nZDTF2BRUVwy")
|
||||||
|
|
||||||
// Sign the first input with the new key
|
// Sign the first input with the new key
|
||||||
tx.sign(0, key)
|
tx.sign(0, key)
|
||||||
|
|
Loading…
Reference in a new issue