From 7e6fbc77b8be3f2f0cc52f410b071a1e1fd28641 Mon Sep 17 00:00:00 2001 From: bojie Date: Mon, 11 Mar 2019 17:43:52 +0800 Subject: app: new app test flow (#244) --- core/rawdb/accessors_chain.go | 15 --------------- core/rawdb/schema.go | 2 -- 2 files changed, 17 deletions(-) (limited to 'core/rawdb') diff --git a/core/rawdb/accessors_chain.go b/core/rawdb/accessors_chain.go index 5e23bef8f..801ad9362 100644 --- a/core/rawdb/accessors_chain.go +++ b/core/rawdb/accessors_chain.go @@ -348,21 +348,6 @@ func WriteBlock(db DatabaseWriter, block *types.Block) { WriteHeader(db, block.Header()) } -// ReadLastRoundNumber get current round number. -func ReadLastRoundNumber(db DatabaseReader) (uint64, error) { - number, err := db.Get(lastRoundNum) - if err != nil { - return 0, err - } - - return new(big.Int).SetBytes(number).Uint64(), nil -} - -// WriteLastRoundNumber write current round number. -func WriteLastRoundNumber(db DatabaseWriter, number uint64) error { - return db.Put(lastRoundNum, new(big.Int).SetUint64(number).Bytes()) -} - // DeleteBlock removes all block data associated with a hash. func DeleteBlock(db DatabaseDeleter, hash common.Hash, number uint64) { DeleteReceipts(db, hash, number) diff --git a/core/rawdb/schema.go b/core/rawdb/schema.go index 954ebfc1d..87a56c0ba 100644 --- a/core/rawdb/schema.go +++ b/core/rawdb/schema.go @@ -63,8 +63,6 @@ var ( // Chain index prefixes (use `i` + single byte to avoid mixing data types). BloomBitsIndexPrefix = []byte("iB") // BloomBitsIndexPrefix is the data table of a chain indexer to track its progress - lastRoundNum = []byte("LastRoundNum") - preimageCounter = metrics.NewRegisteredCounter("db/preimage/total", nil) preimageHitCounter = metrics.NewRegisteredCounter("db/preimage/hits", nil) ) -- cgit v1.2.3