2015-07-07 00:54:22 +00:00
|
|
|
// Copyright 2015 The go-ethereum Authors
|
2015-07-22 16:48:40 +00:00
|
|
|
// This file is part of the go-ethereum library.
|
2015-07-07 00:54:22 +00:00
|
|
|
//
|
2015-07-23 16:35:11 +00:00
|
|
|
// The go-ethereum library is free software: you can redistribute it and/or modify
|
2015-07-07 00:54:22 +00:00
|
|
|
// it under the terms of the GNU Lesser General Public License as published by
|
|
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
|
|
// (at your option) any later version.
|
|
|
|
//
|
2015-07-22 16:48:40 +00:00
|
|
|
// The go-ethereum library is distributed in the hope that it will be useful,
|
2015-07-07 00:54:22 +00:00
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
2015-07-22 16:48:40 +00:00
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
2015-07-07 00:54:22 +00:00
|
|
|
// GNU Lesser General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU Lesser General Public License
|
2015-07-22 16:48:40 +00:00
|
|
|
// along with the go-ethereum library. If not, see <http://www.gnu.org/licenses/>.
|
2015-07-07 00:54:22 +00:00
|
|
|
|
2015-07-01 14:15:02 +00:00
|
|
|
package core
|
|
|
|
|
|
|
|
import (
|
|
|
|
"bytes"
|
|
|
|
"math/big"
|
|
|
|
|
|
|
|
"github.com/ethereum/go-ethereum/common"
|
|
|
|
"github.com/ethereum/go-ethereum/core/types"
|
2015-09-14 07:35:57 +00:00
|
|
|
"github.com/ethereum/go-ethereum/ethdb"
|
2015-07-01 14:15:02 +00:00
|
|
|
"github.com/ethereum/go-ethereum/logger"
|
|
|
|
"github.com/ethereum/go-ethereum/logger/glog"
|
|
|
|
"github.com/ethereum/go-ethereum/params"
|
|
|
|
"github.com/ethereum/go-ethereum/rlp"
|
|
|
|
)
|
|
|
|
|
2015-07-10 12:29:40 +00:00
|
|
|
var (
|
2015-09-07 17:43:01 +00:00
|
|
|
headHeaderKey = []byte("LastHeader")
|
|
|
|
headBlockKey = []byte("LastBlock")
|
2015-08-31 17:21:02 +00:00
|
|
|
|
2015-09-07 17:43:01 +00:00
|
|
|
blockPrefix = []byte("block-")
|
|
|
|
blockNumPrefix = []byte("block-num-")
|
|
|
|
|
|
|
|
headerSuffix = []byte("-header")
|
|
|
|
bodySuffix = []byte("-body")
|
|
|
|
tdSuffix = []byte("-td")
|
2015-08-31 17:21:02 +00:00
|
|
|
|
2015-09-07 17:43:01 +00:00
|
|
|
ExpDiffPeriod = big.NewInt(100000)
|
|
|
|
blockHashPre = []byte("block-hash-") // [deprecated by eth/63]
|
2015-07-10 12:29:40 +00:00
|
|
|
)
|
|
|
|
|
2015-07-01 14:15:02 +00:00
|
|
|
// CalcDifficulty is the difficulty adjustment algorithm. It returns
|
|
|
|
// the difficulty that a new block b should have when created at time
|
|
|
|
// given the parent block's time and difficulty.
|
2015-08-04 21:46:38 +00:00
|
|
|
func CalcDifficulty(time, parentTime uint64, parentNumber, parentDiff *big.Int) *big.Int {
|
2015-07-01 14:15:02 +00:00
|
|
|
diff := new(big.Int)
|
|
|
|
adjust := new(big.Int).Div(parentDiff, params.DifficultyBoundDivisor)
|
2015-07-08 11:21:06 +00:00
|
|
|
bigTime := new(big.Int)
|
|
|
|
bigParentTime := new(big.Int)
|
|
|
|
|
|
|
|
bigTime.SetUint64(time)
|
|
|
|
bigParentTime.SetUint64(parentTime)
|
|
|
|
|
|
|
|
if bigTime.Sub(bigTime, bigParentTime).Cmp(params.DurationLimit) < 0 {
|
2015-07-01 14:15:02 +00:00
|
|
|
diff.Add(parentDiff, adjust)
|
|
|
|
} else {
|
|
|
|
diff.Sub(parentDiff, adjust)
|
|
|
|
}
|
|
|
|
if diff.Cmp(params.MinimumDifficulty) < 0 {
|
2015-08-04 21:46:38 +00:00
|
|
|
diff = params.MinimumDifficulty
|
2015-07-01 14:15:02 +00:00
|
|
|
}
|
2015-08-04 21:46:38 +00:00
|
|
|
|
|
|
|
periodCount := new(big.Int).Add(parentNumber, common.Big1)
|
2015-08-06 11:29:06 +00:00
|
|
|
periodCount.Div(periodCount, ExpDiffPeriod)
|
2015-08-04 21:46:38 +00:00
|
|
|
if periodCount.Cmp(common.Big1) > 0 {
|
|
|
|
// diff = diff + 2^(periodCount - 2)
|
|
|
|
expDiff := periodCount.Sub(periodCount, common.Big2)
|
|
|
|
expDiff.Exp(common.Big2, expDiff, nil)
|
|
|
|
diff.Add(diff, expDiff)
|
|
|
|
diff = common.BigMax(diff, params.MinimumDifficulty)
|
|
|
|
}
|
|
|
|
|
2015-07-01 14:15:02 +00:00
|
|
|
return diff
|
|
|
|
}
|
|
|
|
|
|
|
|
// CalcGasLimit computes the gas limit of the next block after parent.
|
|
|
|
// The result may be modified by the caller.
|
2015-08-03 00:46:34 +00:00
|
|
|
// This is miner strategy, not consensus protocol.
|
2015-07-01 14:15:02 +00:00
|
|
|
func CalcGasLimit(parent *types.Block) *big.Int {
|
2015-08-03 00:46:34 +00:00
|
|
|
// contrib = (parentGasUsed * 3 / 2) / 1024
|
2015-07-01 14:15:02 +00:00
|
|
|
contrib := new(big.Int).Mul(parent.GasUsed(), big.NewInt(3))
|
|
|
|
contrib = contrib.Div(contrib, big.NewInt(2))
|
|
|
|
contrib = contrib.Div(contrib, params.GasLimitBoundDivisor)
|
|
|
|
|
2015-08-03 00:46:34 +00:00
|
|
|
// decay = parentGasLimit / 1024 -1
|
|
|
|
decay := new(big.Int).Div(parent.GasLimit(), params.GasLimitBoundDivisor)
|
|
|
|
decay.Sub(decay, big.NewInt(1))
|
|
|
|
|
|
|
|
/*
|
|
|
|
strategy: gasLimit of block-to-mine is set based on parent's
|
|
|
|
gasUsed value. if parentGasUsed > parentGasLimit * (2/3) then we
|
|
|
|
increase it, otherwise lower it (or leave it unchanged if it's right
|
|
|
|
at that usage) the amount increased/decreased depends on how far away
|
|
|
|
from parentGasLimit * (2/3) parentGasUsed is.
|
|
|
|
*/
|
2015-07-01 14:15:02 +00:00
|
|
|
gl := new(big.Int).Sub(parent.GasLimit(), decay)
|
|
|
|
gl = gl.Add(gl, contrib)
|
|
|
|
gl.Set(common.BigMax(gl, params.MinGasLimit))
|
|
|
|
|
2015-08-03 00:46:34 +00:00
|
|
|
// however, if we're now below the target (GenesisGasLimit) we increase the
|
|
|
|
// limit as much as we can (parentGasLimit / 1024 -1)
|
2015-07-01 14:15:02 +00:00
|
|
|
if gl.Cmp(params.GenesisGasLimit) < 0 {
|
|
|
|
gl.Add(parent.GasLimit(), decay)
|
|
|
|
gl.Set(common.BigMin(gl, params.GenesisGasLimit))
|
|
|
|
}
|
|
|
|
return gl
|
|
|
|
}
|
|
|
|
|
2015-09-07 17:43:01 +00:00
|
|
|
// GetCanonicalHash retrieves a hash assigned to a canonical block number.
|
2015-09-14 07:35:57 +00:00
|
|
|
func GetCanonicalHash(db ethdb.Database, number uint64) common.Hash {
|
2015-09-07 17:43:01 +00:00
|
|
|
data, _ := db.Get(append(blockNumPrefix, big.NewInt(int64(number)).Bytes()...))
|
|
|
|
if len(data) == 0 {
|
|
|
|
return common.Hash{}
|
|
|
|
}
|
|
|
|
return common.BytesToHash(data)
|
2015-08-31 17:21:02 +00:00
|
|
|
}
|
|
|
|
|
2015-09-07 17:43:01 +00:00
|
|
|
// GetHeadHeaderHash retrieves the hash of the current canonical head block's
|
|
|
|
// header. The difference between this and GetHeadBlockHash is that whereas the
|
|
|
|
// last block hash is only updated upon a full block import, the last header
|
|
|
|
// hash is updated already at header import, allowing head tracking for the
|
|
|
|
// fast synchronization mechanism.
|
2015-09-14 07:35:57 +00:00
|
|
|
func GetHeadHeaderHash(db ethdb.Database) common.Hash {
|
2015-09-07 17:43:01 +00:00
|
|
|
data, _ := db.Get(headHeaderKey)
|
2015-08-31 17:21:02 +00:00
|
|
|
if len(data) == 0 {
|
|
|
|
return common.Hash{}
|
|
|
|
}
|
|
|
|
return common.BytesToHash(data)
|
|
|
|
}
|
|
|
|
|
2015-09-07 17:43:01 +00:00
|
|
|
// GetHeadBlockHash retrieves the hash of the current canonical head block.
|
2015-09-14 07:35:57 +00:00
|
|
|
func GetHeadBlockHash(db ethdb.Database) common.Hash {
|
2015-09-07 17:43:01 +00:00
|
|
|
data, _ := db.Get(headBlockKey)
|
2015-08-31 17:21:02 +00:00
|
|
|
if len(data) == 0 {
|
|
|
|
return common.Hash{}
|
|
|
|
}
|
|
|
|
return common.BytesToHash(data)
|
|
|
|
}
|
|
|
|
|
2015-09-07 17:43:01 +00:00
|
|
|
// GetHeaderRLP retrieves a block header in its raw RLP database encoding, or nil
|
|
|
|
// if the header's not found.
|
2015-09-14 07:35:57 +00:00
|
|
|
func GetHeaderRLP(db ethdb.Database, hash common.Hash) rlp.RawValue {
|
2015-09-07 17:43:01 +00:00
|
|
|
data, _ := db.Get(append(append(blockPrefix, hash[:]...), headerSuffix...))
|
2015-08-31 17:21:02 +00:00
|
|
|
return data
|
|
|
|
}
|
|
|
|
|
2015-09-07 17:43:01 +00:00
|
|
|
// GetHeader retrieves the block header corresponding to the hash, nil if none
|
|
|
|
// found.
|
2015-09-14 07:35:57 +00:00
|
|
|
func GetHeader(db ethdb.Database, hash common.Hash) *types.Header {
|
2015-09-07 17:43:01 +00:00
|
|
|
data := GetHeaderRLP(db, hash)
|
2015-07-01 14:15:02 +00:00
|
|
|
if len(data) == 0 {
|
|
|
|
return nil
|
|
|
|
}
|
2015-08-31 17:21:02 +00:00
|
|
|
header := new(types.Header)
|
|
|
|
if err := rlp.Decode(bytes.NewReader(data), header); err != nil {
|
|
|
|
glog.V(logger.Error).Infof("invalid block header RLP for hash %x: %v", hash, err)
|
2015-07-01 14:15:02 +00:00
|
|
|
return nil
|
|
|
|
}
|
2015-08-31 17:21:02 +00:00
|
|
|
return header
|
2015-07-01 14:15:02 +00:00
|
|
|
}
|
|
|
|
|
2015-09-07 17:43:01 +00:00
|
|
|
// GetBodyRLP retrieves the block body (transactions and uncles) in RLP encoding.
|
2015-09-14 07:35:57 +00:00
|
|
|
func GetBodyRLP(db ethdb.Database, hash common.Hash) rlp.RawValue {
|
2015-09-07 17:43:01 +00:00
|
|
|
data, _ := db.Get(append(append(blockPrefix, hash[:]...), bodySuffix...))
|
|
|
|
return data
|
2015-08-31 17:21:02 +00:00
|
|
|
}
|
|
|
|
|
2015-09-07 17:43:01 +00:00
|
|
|
// GetBody retrieves the block body (transactons, uncles) corresponding to the
|
|
|
|
// hash, nil if none found.
|
2015-09-14 07:35:57 +00:00
|
|
|
func GetBody(db ethdb.Database, hash common.Hash) *types.Body {
|
2015-09-07 17:43:01 +00:00
|
|
|
data := GetBodyRLP(db, hash)
|
|
|
|
if len(data) == 0 {
|
|
|
|
return nil
|
2015-08-31 17:21:02 +00:00
|
|
|
}
|
2015-09-07 17:43:01 +00:00
|
|
|
body := new(types.Body)
|
2015-08-31 17:21:02 +00:00
|
|
|
if err := rlp.Decode(bytes.NewReader(data), body); err != nil {
|
|
|
|
glog.V(logger.Error).Infof("invalid block body RLP for hash %x: %v", hash, err)
|
2015-09-07 17:43:01 +00:00
|
|
|
return nil
|
2015-08-31 17:21:02 +00:00
|
|
|
}
|
2015-09-07 17:43:01 +00:00
|
|
|
return body
|
2015-08-31 17:21:02 +00:00
|
|
|
}
|
|
|
|
|
2015-09-07 17:43:01 +00:00
|
|
|
// GetTd retrieves a block's total difficulty corresponding to the hash, nil if
|
|
|
|
// none found.
|
2015-09-14 07:35:57 +00:00
|
|
|
func GetTd(db ethdb.Database, hash common.Hash) *big.Int {
|
2015-09-07 17:43:01 +00:00
|
|
|
data, _ := db.Get(append(append(blockPrefix, hash.Bytes()...), tdSuffix...))
|
|
|
|
if len(data) == 0 {
|
2015-08-31 17:21:02 +00:00
|
|
|
return nil
|
|
|
|
}
|
2015-09-07 17:43:01 +00:00
|
|
|
td := new(big.Int)
|
|
|
|
if err := rlp.Decode(bytes.NewReader(data), td); err != nil {
|
|
|
|
glog.V(logger.Error).Infof("invalid block total difficulty RLP for hash %x: %v", hash, err)
|
2015-08-31 17:21:02 +00:00
|
|
|
return nil
|
|
|
|
}
|
2015-09-07 17:43:01 +00:00
|
|
|
return td
|
2015-08-31 17:21:02 +00:00
|
|
|
}
|
|
|
|
|
2015-09-07 17:43:01 +00:00
|
|
|
// GetBlock retrieves an entire block corresponding to the hash, assembling it
|
|
|
|
// back from the stored header and body.
|
2015-09-14 07:35:57 +00:00
|
|
|
func GetBlock(db ethdb.Database, hash common.Hash) *types.Block {
|
2015-09-07 17:43:01 +00:00
|
|
|
// Retrieve the block header and body contents
|
|
|
|
header := GetHeader(db, hash)
|
|
|
|
if header == nil {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
body := GetBody(db, hash)
|
|
|
|
if body == nil {
|
2015-07-01 14:15:02 +00:00
|
|
|
return nil
|
|
|
|
}
|
2015-09-07 17:43:01 +00:00
|
|
|
// Reassemble the block and return
|
|
|
|
return types.NewBlockWithHeader(header).WithBody(body.Transactions, body.Uncles)
|
2015-07-01 14:15:02 +00:00
|
|
|
}
|
|
|
|
|
2015-09-07 17:43:01 +00:00
|
|
|
// WriteCanonicalHash stores the canonical hash for the given block number.
|
2015-09-14 07:35:57 +00:00
|
|
|
func WriteCanonicalHash(db ethdb.Database, hash common.Hash, number uint64) error {
|
2015-09-07 17:43:01 +00:00
|
|
|
key := append(blockNumPrefix, big.NewInt(int64(number)).Bytes()...)
|
2015-08-31 17:21:02 +00:00
|
|
|
if err := db.Put(key, hash.Bytes()); err != nil {
|
|
|
|
glog.Fatalf("failed to store number to hash mapping into database: %v", err)
|
2015-07-01 14:15:02 +00:00
|
|
|
return err
|
|
|
|
}
|
2015-07-25 19:48:53 +00:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2015-09-07 17:43:01 +00:00
|
|
|
// WriteHeadHeaderHash stores the head header's hash.
|
2015-09-14 07:35:57 +00:00
|
|
|
func WriteHeadHeaderHash(db ethdb.Database, hash common.Hash) error {
|
2015-09-07 17:43:01 +00:00
|
|
|
if err := db.Put(headHeaderKey, hash.Bytes()); err != nil {
|
|
|
|
glog.Fatalf("failed to store last header's hash into database: %v", err)
|
2015-07-25 19:48:53 +00:00
|
|
|
return err
|
|
|
|
}
|
2015-09-07 17:43:01 +00:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// WriteHeadBlockHash stores the head block's hash.
|
2015-09-14 07:35:57 +00:00
|
|
|
func WriteHeadBlockHash(db ethdb.Database, hash common.Hash) error {
|
2015-09-07 17:43:01 +00:00
|
|
|
if err := db.Put(headBlockKey, hash.Bytes()); err != nil {
|
|
|
|
glog.Fatalf("failed to store last block's hash into database: %v", err)
|
2015-07-01 14:15:02 +00:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
2015-07-10 12:29:40 +00:00
|
|
|
|
2015-08-31 17:21:02 +00:00
|
|
|
// WriteHeader serializes a block header into the database.
|
2015-09-14 07:35:57 +00:00
|
|
|
func WriteHeader(db ethdb.Database, header *types.Header) error {
|
2015-08-31 17:21:02 +00:00
|
|
|
data, err := rlp.EncodeToBytes(header)
|
2015-07-10 12:29:40 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2015-09-07 17:43:01 +00:00
|
|
|
key := append(append(blockPrefix, header.Hash().Bytes()...), headerSuffix...)
|
2015-08-31 17:21:02 +00:00
|
|
|
if err := db.Put(key, data); err != nil {
|
|
|
|
glog.Fatalf("failed to store header into database: %v", err)
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
glog.V(logger.Debug).Infof("stored header #%v [%x…]", header.Number, header.Hash().Bytes()[:4])
|
|
|
|
return nil
|
|
|
|
}
|
2015-07-10 12:29:40 +00:00
|
|
|
|
2015-08-31 17:21:02 +00:00
|
|
|
// WriteBody serializes the body of a block into the database.
|
2015-09-14 07:35:57 +00:00
|
|
|
func WriteBody(db ethdb.Database, hash common.Hash, body *types.Body) error {
|
2015-09-07 17:43:01 +00:00
|
|
|
data, err := rlp.EncodeToBytes(body)
|
2015-08-31 17:21:02 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2015-09-07 17:43:01 +00:00
|
|
|
key := append(append(blockPrefix, hash.Bytes()...), bodySuffix...)
|
|
|
|
if err := db.Put(key, data); err != nil {
|
|
|
|
glog.Fatalf("failed to store block body into database: %v", err)
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
glog.V(logger.Debug).Infof("stored block body [%x…]", hash.Bytes()[:4])
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// WriteTd serializes the total difficulty of a block into the database.
|
2015-09-14 07:35:57 +00:00
|
|
|
func WriteTd(db ethdb.Database, hash common.Hash, td *big.Int) error {
|
2015-09-07 17:43:01 +00:00
|
|
|
data, err := rlp.EncodeToBytes(td)
|
2015-08-31 17:21:02 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
2015-07-10 12:29:40 +00:00
|
|
|
}
|
2015-09-07 17:43:01 +00:00
|
|
|
key := append(append(blockPrefix, hash.Bytes()...), tdSuffix...)
|
|
|
|
if err := db.Put(key, data); err != nil {
|
|
|
|
glog.Fatalf("failed to store block total difficulty into database: %v", err)
|
2015-08-31 17:21:02 +00:00
|
|
|
return err
|
|
|
|
}
|
2015-09-07 17:43:01 +00:00
|
|
|
glog.V(logger.Debug).Infof("stored block total difficulty [%x…]: %v", hash.Bytes()[:4], td)
|
2015-08-31 17:21:02 +00:00
|
|
|
return nil
|
|
|
|
}
|
2015-07-10 12:29:40 +00:00
|
|
|
|
2015-08-31 17:21:02 +00:00
|
|
|
// WriteBlock serializes a block into the database, header and body separately.
|
2015-09-14 07:35:57 +00:00
|
|
|
func WriteBlock(db ethdb.Database, block *types.Block) error {
|
2015-08-31 17:21:02 +00:00
|
|
|
// Store the body first to retain database consistency
|
2015-09-07 17:43:01 +00:00
|
|
|
if err := WriteBody(db, block.Hash(), &types.Body{block.Transactions(), block.Uncles()}); err != nil {
|
2015-08-31 17:21:02 +00:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
// Store the header too, signaling full block ownership
|
|
|
|
if err := WriteHeader(db, block.Header()); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2015-07-10 12:29:40 +00:00
|
|
|
return nil
|
|
|
|
}
|
2015-08-31 17:21:02 +00:00
|
|
|
|
2015-09-07 17:43:01 +00:00
|
|
|
// DeleteCanonicalHash removes the number to hash canonical mapping.
|
2015-09-14 07:35:57 +00:00
|
|
|
func DeleteCanonicalHash(db ethdb.Database, number uint64) {
|
2015-09-07 17:43:01 +00:00
|
|
|
db.Delete(append(blockNumPrefix, big.NewInt(int64(number)).Bytes()...))
|
|
|
|
}
|
|
|
|
|
2015-08-31 17:21:02 +00:00
|
|
|
// DeleteHeader removes all block header data associated with a hash.
|
2015-09-14 07:35:57 +00:00
|
|
|
func DeleteHeader(db ethdb.Database, hash common.Hash) {
|
2015-09-07 17:43:01 +00:00
|
|
|
db.Delete(append(append(blockPrefix, hash.Bytes()...), headerSuffix...))
|
2015-08-31 17:21:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// DeleteBody removes all block body data associated with a hash.
|
2015-09-14 07:35:57 +00:00
|
|
|
func DeleteBody(db ethdb.Database, hash common.Hash) {
|
2015-09-07 17:43:01 +00:00
|
|
|
db.Delete(append(append(blockPrefix, hash.Bytes()...), bodySuffix...))
|
|
|
|
}
|
|
|
|
|
|
|
|
// DeleteTd removes all block total difficulty data associated with a hash.
|
2015-09-14 07:35:57 +00:00
|
|
|
func DeleteTd(db ethdb.Database, hash common.Hash) {
|
2015-09-07 17:43:01 +00:00
|
|
|
db.Delete(append(append(blockPrefix, hash.Bytes()...), tdSuffix...))
|
2015-08-31 17:21:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// DeleteBlock removes all block data associated with a hash.
|
2015-09-14 07:35:57 +00:00
|
|
|
func DeleteBlock(db ethdb.Database, hash common.Hash) {
|
2015-08-31 17:21:02 +00:00
|
|
|
DeleteHeader(db, hash)
|
|
|
|
DeleteBody(db, hash)
|
2015-09-07 17:43:01 +00:00
|
|
|
DeleteTd(db, hash)
|
2015-08-31 17:21:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// [deprecated by eth/63]
|
|
|
|
// GetBlockByHashOld returns the old combined block corresponding to the hash
|
|
|
|
// or nil if not found. This method is only used by the upgrade mechanism to
|
|
|
|
// access the old combined block representation. It will be dropped after the
|
|
|
|
// network transitions to eth/63.
|
2015-09-14 07:35:57 +00:00
|
|
|
func GetBlockByHashOld(db ethdb.Database, hash common.Hash) *types.Block {
|
2015-08-31 17:21:02 +00:00
|
|
|
data, _ := db.Get(append(blockHashPre, hash[:]...))
|
|
|
|
if len(data) == 0 {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
var block types.StorageBlock
|
|
|
|
if err := rlp.Decode(bytes.NewReader(data), &block); err != nil {
|
|
|
|
glog.V(logger.Error).Infof("invalid block RLP for hash %x: %v", hash, err)
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
return (*types.Block)(&block)
|
|
|
|
}
|