obscuren 11 жил өмнө
parent
commit
962255b373

+ 1 - 1
ethchain/block_chain.go

@@ -176,7 +176,7 @@ func (bc *BlockChain) setLastBlock() {
 }
 
 func (bc *BlockChain) SetTotalDifficulty(td *big.Int) {
-	ethutil.Config.Db.Put([]byte("LastKnownTotalDifficulty"), td.Bytes())
+	ethutil.Config.Db.Put([]byte("LTD"), td.Bytes())
 	bc.TD = td
 }
 

+ 3 - 10
ethdb/database.go

@@ -2,9 +2,10 @@ package ethdb
 
 import (
 	"fmt"
+	"path"
+
 	"github.com/ethereum/eth-go/ethutil"
 	"github.com/syndtr/goleveldb/leveldb"
-	"path"
 )
 
 type LDBDatabase struct {
@@ -45,7 +46,7 @@ func (db *LDBDatabase) Db() *leveldb.DB {
 }
 
 func (db *LDBDatabase) LastKnownTD() []byte {
-	data, _ := db.db.Get([]byte("LastKnownTotalDifficulty"), nil)
+	data, _ := db.db.Get([]byte("LTD"), nil)
 
 	if len(data) == 0 {
 		data = []byte{0x0}
@@ -54,14 +55,6 @@ func (db *LDBDatabase) LastKnownTD() []byte {
 	return data
 }
 
-/*
-func (db *LDBDatabase) GetKeys() []*ethutil.Key {
-	data, _ := db.Get([]byte("KeyRing"))
-
-	return []*ethutil.Key{ethutil.NewKeyFromBytes(data)}
-}
-*/
-
 func (db *LDBDatabase) Close() {
 	// Close the leveldb database
 	db.db.Close()