Merge pull request #7 from sdboyer/vet-fixes

Fix a couple errors from go vet
This commit is contained in:
Jeffrey Wilcke 2014-02-19 11:36:23 +01:00
commit 1e241e3a61
1 changed files with 1 additions and 2 deletions

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()