aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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) {