aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorobscuren <obscuren@obscura.com>2014-01-01 10:07:49 +0800
committerobscuren <obscuren@obscura.com>2014-01-01 10:07:49 +0800
commit52952e274d791991c6c368d135234068968981bc (patch)
tree2486f2e7d0564c21866e55c84f71fbb9a70c22be
parent35e4d746418386508247319beeeb50619204af03 (diff)
downloadgo-tangerine-52952e274d791991c6c368d135234068968981bc.tar.gz
go-tangerine-52952e274d791991c6c368d135234068968981bc.tar.zst
go-tangerine-52952e274d791991c6c368d135234068968981bc.zip
Updated database interface and eth test code
-rw-r--r--database.go2
-rw-r--r--ethereum.go2
2 files changed, 2 insertions, 2 deletions
diff --git a/database.go b/database.go
index c056e70af..b147756b6 100644
--- a/database.go
+++ b/database.go
@@ -33,7 +33,7 @@ func NewLDBDatabase() (*LDBDatabase, error) {
}
func (db *LDBDatabase) Bootstrap() error {
- db.trie = NewTrie(db)
+ //db.trie = NewTrie(db)
return nil
}
diff --git a/ethereum.go b/ethereum.go
index d9e1fd314..e260e6c0e 100644
--- a/ethereum.go
+++ b/ethereum.go
@@ -6,7 +6,7 @@ import (
"os/signal"
)
-const Debug = false
+const Debug = true
// Register interrupt handlers so we can stop the server
func RegisterInterupts(s *Server) {