@@ -90,7 +90,7 @@ func ShouldHaveSerializedBlockHeight(header *wire.BlockHeader) bool {
90
90
91
91
// IsCoinBaseTx determines whether or not a transaction is a coinbase. A coinbase
92
92
// is a special transaction created by miners that has no inputs. This is
93
- // represented in the block chain by a transaction with a single input that has
93
+ // represented in the blockchain by a transaction with a single input that has
94
94
// a previous output transaction index set to the maximum value along with a
95
95
// zero hash.
96
96
//
@@ -114,7 +114,7 @@ func IsCoinBaseTx(msgTx *wire.MsgTx) bool {
114
114
115
115
// IsCoinBase determines whether or not a transaction is a coinbase. A coinbase
116
116
// is a special transaction created by miners that has no inputs. This is
117
- // represented in the block chain by a transaction with a single input that has
117
+ // represented in the blockchain by a transaction with a single input that has
118
118
// a previous output transaction index set to the maximum value along with a
119
119
// zero hash.
120
120
//
@@ -782,7 +782,7 @@ func CheckBlockHeaderContext(header *wire.BlockHeader, prevNode HeaderCtx,
782
782
}
783
783
784
784
// checkBlockContext performs several validation checks on the block which depend
785
- // on its position within the block chain .
785
+ // on its position within the blockchain .
786
786
//
787
787
// The flags modify the behavior of this function as follows:
788
788
// - BFFastAdd: The transaction are not checked to see if they are finalized
@@ -1087,7 +1087,7 @@ func (b *BlockChain) checkConnectBlock(node *blockNode, block *btcutil.Block, vi
1087
1087
//
1088
1088
// In addition, as of BIP0034, duplicate coinbases are no longer
1089
1089
// possible due to its requirement for including the block height in the
1090
- // coinbase and thus it is no longer possible to create transactions
1090
+ // coinbase, and thus it is no longer possible to create transactions
1091
1091
// that 'overwrite' older ones. Therefore, only enforce the rule if
1092
1092
// BIP0034 is not yet active. This is a useful optimization because the
1093
1093
// BIP0030 check is expensive since it involves a ton of cache misses in
@@ -1250,7 +1250,7 @@ func (b *BlockChain) checkConnectBlock(node *blockNode, block *btcutil.Block, vi
1250
1250
if csvState == ThresholdActive {
1251
1251
// If the CSV soft-fork is now active, then modify the
1252
1252
// scriptFlags to ensure that the CSV op code is properly
1253
- // validated during the script checks bleow .
1253
+ // validated during the script checks below .
1254
1254
scriptFlags |= txscript .ScriptVerifyCheckSequenceVerify
1255
1255
1256
1256
// We obtain the MTP of the *previous* block in order to
0 commit comments