aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ethchain/block.go25
-rw-r--r--ethminer/miner.go1
2 files changed, 0 insertions, 26 deletions
diff --git a/ethchain/block.go b/ethchain/block.go
index c9197c69a..d95ebf4b5 100644
--- a/ethchain/block.go
+++ b/ethchain/block.go
@@ -116,11 +116,6 @@ func (block *Block) HashNoNonce() []byte {
return ethutil.Sha3Bin(ethutil.Encode([]interface{}{block.PrevHash, block.UncleSha, block.Coinbase, block.state.trie.Root, block.TxSha, block.Difficulty, block.Time, block.Extra}))
}
-func (block *Block) PrintHash() {
- fmt.Println(block)
- fmt.Println(ethutil.NewValue(ethutil.Encode([]interface{}{block.PrevHash, block.UncleSha, block.Coinbase, block.state.trie.Root, block.TxSha, block.Difficulty, block.Time, block.Extra, block.Nonce})))
-}
-
func (block *Block) State() *State {
return block.state
}
@@ -182,26 +177,6 @@ func (block *Block) MakeContract(tx *Transaction) {
}
/////// Block Encoding
-func (block *Block) encodedUncles() interface{} {
- uncles := make([]interface{}, len(block.Uncles))
- for i, uncle := range block.Uncles {
- uncles[i] = uncle.RlpEncode()
- }
-
- return uncles
-}
-
-func (block *Block) encodedTxs() interface{} {
- // Marshal the transactions of this block
- encTx := make([]interface{}, len(block.transactions))
- for i, tx := range block.transactions {
- // Cast it to a string (safe)
- encTx[i] = tx.RlpData()
- }
-
- return encTx
-}
-
func (block *Block) rlpTxs() interface{} {
// Marshal the transactions of this block
encTx := make([]interface{}, len(block.transactions))
diff --git a/ethminer/miner.go b/ethminer/miner.go
index 08a4626e4..791e8e402 100644
--- a/ethminer/miner.go
+++ b/ethminer/miner.go
@@ -145,7 +145,6 @@ func (miner *Miner) listener() {
*/
miner.ethereum.Broadcast(ethwire.MsgBlockTy, []interface{}{miner.block.Value().Val})
log.Printf("[MINER] 🔨 Mined block %x\n", miner.block.Hash())
- log.Println(miner.block)
miner.txs = []*ethchain.Transaction{} // Move this somewhere neat
miner.block = miner.ethereum.BlockChain().NewBlock(miner.coinbase, miner.txs)