Fix a couple errors from go vet

This commit is contained in:
Sam Boyer 2014-02-18 10:47:09 -05:00
parent bbcf304b99
commit 6dac014978

View File

@ -285,7 +285,6 @@ func (p *Peer) HandleInbound() {
p.lastPong = time.Now().Unix()
case ethwire.MsgBlockTy:
// Get all blocks and process them
msg.Data = msg.Data
var block, lastBlock *ethchain.Block
var err error
for i := msg.Data.Len() - 1; i >= 0; i-- {
@ -438,7 +437,7 @@ func (p *Peer) Start() {
err := p.pushHandshake()
if err != nil {
log.Printf("Peer can't send outbound version ack", err)
log.Println("Peer can't send outbound version ack", err)
p.Stop()