blockchain: Correct serialized coinbase height error message.
This commit is contained in:
parent
4d40a2110a
commit
87182a2ddf
1 changed files with 1 additions and 1 deletions
|
@ -764,7 +764,7 @@ func ExtractCoinbaseHeight(coinbaseTx *btcutil.Tx) (int32, error) {
|
|||
str := "the coinbase signature script for blocks of " +
|
||||
"version %d or greater must start with the " +
|
||||
"serialized block height"
|
||||
str = fmt.Sprintf(str, serializedLen)
|
||||
str = fmt.Sprintf(str, serializedHeightVersion)
|
||||
return 0, ruleError(ErrMissingCoinbaseHeight, str)
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue