aboutsummaryrefslogtreecommitdiffstats
path: root/ethchain
diff options
context:
space:
mode:
authorobscuren <geffobscura@gmail.com>2014-05-19 17:25:27 +0800
committerobscuren <geffobscura@gmail.com>2014-05-19 17:25:27 +0800
commitbd48690f63d07d9a0568f0d8092006ebaa12af5f (patch)
tree34fea6da378b5e101c51bde0bd811752caa532c0 /ethchain
parent8730dfdcc2e2b40410a57385e4864d15f2f0336b (diff)
downloadgo-tangerine-bd48690f63d07d9a0568f0d8092006ebaa12af5f.tar
go-tangerine-bd48690f63d07d9a0568f0d8092006ebaa12af5f.tar.gz
go-tangerine-bd48690f63d07d9a0568f0d8092006ebaa12af5f.tar.bz2
go-tangerine-bd48690f63d07d9a0568f0d8092006ebaa12af5f.tar.lz
go-tangerine-bd48690f63d07d9a0568f0d8092006ebaa12af5f.tar.xz
go-tangerine-bd48690f63d07d9a0568f0d8092006ebaa12af5f.tar.zst
go-tangerine-bd48690f63d07d9a0568f0d8092006ebaa12af5f.zip
Testing different mining state
Diffstat (limited to 'ethchain')
-rw-r--r--ethchain/dagger.go4
-rw-r--r--ethchain/transaction_pool.go2
2 files changed, 3 insertions, 3 deletions
diff --git a/ethchain/dagger.go b/ethchain/dagger.go
index 9d2df4069..18e53d3a8 100644
--- a/ethchain/dagger.go
+++ b/ethchain/dagger.go
@@ -29,14 +29,14 @@ func (pow *EasyPow) Search(block *Block, reactChan chan ethutil.React) []byte {
for {
select {
case <-reactChan:
- log.Println("[POW] Received reactor event; breaking out.")
+ ethutil.Config.Log.Infoln("[POW] Received reactor event; breaking out.")
return nil
default:
i++
if i%1234567 == 0 {
elapsed := time.Now().UnixNano() - start
hashes := ((float64(1e9) / float64(elapsed)) * float64(i)) / 1000
- log.Println("[POW] Hashing @", int64(hashes), "khash")
+ ethutil.Config.Log.Infoln("[POW] Hashing @", int64(hashes), "khash")
}
sha := ethutil.Sha3Bin(big.NewInt(r.Int63()).Bytes())
diff --git a/ethchain/transaction_pool.go b/ethchain/transaction_pool.go
index da77f32b3..796ec7c9a 100644
--- a/ethchain/transaction_pool.go
+++ b/ethchain/transaction_pool.go
@@ -131,7 +131,7 @@ func (pool *TxPool) ProcessTransaction(tx *Transaction, block *Block, toContract
block.state.UpdateStateObject(sender)
- log.Printf("[TXPL] Processed Tx %x\n", tx.Hash())
+ ethutil.Config.Log.Infof("[TXPL] Processed Tx %x\n", tx.Hash())
// Notify all subscribers
pool.Ethereum.Reactor().Post("newTx:post", tx)