Commit f78bd4d5 authored by obscuren's avatar obscuren

Format

parent e280a2a7
package main package main
import ( import (
"errors"
"fmt" "fmt"
"github.com/ethereum/ethutil-go" "github.com/ethereum/ethutil-go"
"errors"
"log" "log"
"math/big" "math/big"
) )
...@@ -24,7 +24,6 @@ func NewBlockChain() *BlockChain { ...@@ -24,7 +24,6 @@ func NewBlockChain() *BlockChain {
bc.TD = new(big.Int) bc.TD = new(big.Int)
bc.TD.SetBytes(ethutil.Config.Db.LastKnownTD()) bc.TD.SetBytes(ethutil.Config.Db.LastKnownTD())
// TODO get last block from the database // TODO get last block from the database
//bc.LastBlock = bc.genesisBlock //bc.LastBlock = bc.genesisBlock
...@@ -175,7 +174,6 @@ func (bm *BlockManager) AccumelateRewards(block *ethutil.Block) error { ...@@ -175,7 +174,6 @@ func (bm *BlockManager) AccumelateRewards(block *ethutil.Block) error {
// TODO Reward each uncle // TODO Reward each uncle
return nil return nil
} }
......
package main package main
import ( import (
"github.com/ethereum/ethwire-go"
"github.com/ethereum/ethutil-go" "github.com/ethereum/ethutil-go"
"github.com/ethereum/ethwire-go"
"log" "log"
"net" "net"
) )
...@@ -32,7 +32,7 @@ func NewPeer(conn net.Conn, server *Server, inbound bool) *Peer { ...@@ -32,7 +32,7 @@ func NewPeer(conn net.Conn, server *Server, inbound bool) *Peer {
// Outputs any RLP encoded data to the peer // Outputs any RLP encoded data to the peer
func (p *Peer) QueueMessage(msg *ethwire.InOutMsg) { func (p *Peer) QueueMessage(msg *ethwire.InOutMsg) {
p.outputQueue <- msg//ethwire.InOutMsg{MsgType: msgType, Nonce: ethutil.RandomUint64(), Data: data} p.outputQueue <- msg //ethwire.InOutMsg{MsgType: msgType, Nonce: ethutil.RandomUint64(), Data: data}
} }
// Outbound message handler. Outbound messages are handled here // Outbound message handler. Outbound messages are handled here
...@@ -145,4 +145,3 @@ func (p *Peer) handleVersionAck(msg *ethwire.InOutMsg) { ...@@ -145,4 +145,3 @@ func (p *Peer) handleVersionAck(msg *ethwire.InOutMsg) {
} }
} }
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment