diff options
author | obscuren <geffobscura@gmail.com> | 2014-02-18 08:33:15 +0800 |
---|---|---|
committer | obscuren <geffobscura@gmail.com> | 2014-02-18 08:33:15 +0800 |
commit | 8629d9a4187c2027e565a50d763f949993ab169c (patch) | |
tree | c7ef08a4fe28857e2bb112647707812c376d3f05 /ethchain | |
parent | c7623c31650d078184511be796f7a00dde2a25a1 (diff) | |
download | dexon-8629d9a4187c2027e565a50d763f949993ab169c.tar dexon-8629d9a4187c2027e565a50d763f949993ab169c.tar.gz dexon-8629d9a4187c2027e565a50d763f949993ab169c.tar.bz2 dexon-8629d9a4187c2027e565a50d763f949993ab169c.tar.lz dexon-8629d9a4187c2027e565a50d763f949993ab169c.tar.xz dexon-8629d9a4187c2027e565a50d763f949993ab169c.tar.zst dexon-8629d9a4187c2027e565a50d763f949993ab169c.zip |
String changed and removed some debugging code
Diffstat (limited to 'ethchain')
-rw-r--r-- | ethchain/block.go | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/ethchain/block.go b/ethchain/block.go index 0678f64e2..34ddf9fec 100644 --- a/ethchain/block.go +++ b/ethchain/block.go @@ -135,7 +135,7 @@ func (block *Block) GetContract(addr []byte) *Contract { } func (block *Block) UpdateContract(addr []byte, contract *Contract) { // Make sure the state is synced - contract.State().Sync() + //contract.State().Sync() block.state.Update(string(addr), string(contract.RlpEncode())) } @@ -298,12 +298,6 @@ func (block *Block) RlpValueDecode(decoder *ethutil.Value) { tx := NewTransactionFromValue(txes.Get(i)) block.transactions[i] = tx - - /* - if ethutil.Config.Debug { - ethutil.Config.Db.Put(tx.Hash(), ethutil.Encode(tx)) - } - */ } } @@ -335,7 +329,7 @@ func NewUncleBlockFromValue(header *ethutil.Value) *Block { } func (block *Block) String() string { - return fmt.Sprintf("Block(%x):\nPrevHash:%x\nUncleSha:%x\nCoinbase:%x\nRoot:%x\nTxSha:%x\nDiff:%v\nTime:%d\nNonce:%x", block.Hash(), block.PrevHash, block.UncleSha, block.Coinbase, block.state.Root, block.TxSha, block.Difficulty, block.Time, block.Nonce) + return fmt.Sprintf("Block(%x):\nPrevHash:%x\nUncleSha:%x\nCoinbase:%x\nRoot:%x\nTxSha:%x\nDiff:%v\nTime:%d\nNonce:%x\nTxs:%d\n", block.Hash(), block.PrevHash, block.UncleSha, block.Coinbase, block.state.Root, block.TxSha, block.Difficulty, block.Time, block.Nonce, len(block.transactions)) } //////////// UNEXPORTED ///////////////// |