From 0f5161bada2ad75dbd001e36bc1ceed8c4efd0c9 Mon Sep 17 00:00:00 2001 From: What is Gravity? Date: Tue, 23 Aug 2016 20:49:25 +0200 Subject: [PATCH] eth/handler: Correct spelling mistake --- eth/handler.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eth/handler.go b/eth/handler.go index 3fa47c2690..fcf1382705 100644 --- a/eth/handler.go +++ b/eth/handler.go @@ -709,7 +709,7 @@ func (pm *ProtocolManager) BroadcastBlock(block *types.Block, propagate bool) { } glog.V(logger.Detail).Infof("propagated block %x to %d peers in %v", hash[:4], len(transfer), time.Since(block.ReceivedAt)) } - // Otherwise if the block is indeed in out own chain, announce it + // Otherwise if the block is indeed in our own chain, announce it if pm.blockchain.HasBlock(hash) { for _, peer := range peers { peer.SendNewBlockHashes([]common.Hash{hash}, []uint64{block.NumberU64()})