Skip to content

Commit 04efed7

Browse files
authored
Fixed typos in A3_0_Using_Bitcoin_Regtest.md
Fixed typos.
1 parent 5ac748e commit 04efed7

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

A3_0_Using_Bitcoin_Regtest.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ $ bitcoin-cli -regtest generate 101
4242

4343
> :warning: WARNING. Note that you must add the `-regtest` argument after each `bitcoin-cli` command to correctly access your Regtest environment. If you prefer, you can include a `regtest=1` command in your `~/.bitcoin/bitcoin.conf` file.
4444
45-
Because a block must have 100 confirmations before that reward can be spent, you generate 101 blocks, providing access to the coinbase transaction from block #1. Because this is a new blockchain using Bitcoin’s default rules, the first blocks pays a block reward of 50 bitcoins. Unlike mainnet, in regtest mode only the first 150 blocks pay a reward of 50 bitcoins. The reward halves after 150 blocks, so it pays 25, 12.5, and so on...
45+
Because a block must have 100 confirmations before that reward can be spent, you generate 101 blocks, providing access to the coinbase transaction from block #1. Because this is a new blockchain using Bitcoin’s default rules, the first blocks pay a block reward of 50 bitcoins. Unlike mainnet, in regtest mode only the first 150 blocks pay a reward of 50 bitcoins. The reward halves after 150 blocks, so it pays 25, 12.5, and so on...
4646

4747
The output is the block hash of every block generated.
4848

@@ -62,7 +62,7 @@ Now you should be able to use this balance for any type of interaction on your p
6262

6363
It is important to note that for any transactions to complete, you will have to generate (mine) new blocks, so that the transactions can be included.
6464

65-
For example, to create a transaction and include it in a block, you should ufirst se the `sendtoaddress` command:
65+
For example, to create a transaction and include it in a block, you should first use the `sendtoaddress` command:
6666
```
6767
$ bitcoin-cli -regtest sendtoaddress [address] 15.1
6868
e834a4ac6ef754164c8e3f0be4f34531b74b768199ffb244ab9f6cb1bbc7465a
@@ -107,7 +107,7 @@ $ bitcoin-cli -regtest gettransaction e834a4ac6ef754164c8e3f0be4f34531b74b768199
107107
```
108108

109109
However, you must now finalize it by creating blocks on the blockchain.
110-
Most applications require a six-block confirmations to consider the transaction as irreversible. If that is your case, you can mine additional six blocks into your regtest chain:
110+
Most applications require six block confirmations to consider the transaction as irreversible. If that is your case, you can mine additional six blocks into your regtest chain:
111111
```
112112
$ bitcoin-cli -regtest generate 6
113113
[

0 commit comments

Comments
 (0)