From 7a75da63c61e32fc78fb66d8b0e61c3f9aac4ae6 Mon Sep 17 00:00:00 2001 From: Jeffrey Wilcke Date: Sat, 1 Aug 2015 17:34:48 +0200 Subject: core: added default genesis block When a user runs a freshly setup geth w/o a database initialised the default genesis block is decoded and inserted in to the database. --- core/transaction_pool.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'core/transaction_pool.go') diff --git a/core/transaction_pool.go b/core/transaction_pool.go index 2a6666ea1..13f14f995 100644 --- a/core/transaction_pool.go +++ b/core/transaction_pool.go @@ -135,7 +135,7 @@ func (pool *TxPool) resetState() { func (pool *TxPool) Stop() { close(pool.quit) pool.events.Unsubscribe() - glog.V(logger.Info).Infoln("TX Pool stopped") + glog.V(logger.Info).Infoln("Transaction pool stopped") } func (pool *TxPool) State() *state.ManagedState { -- cgit