Skip to content

Commit

Permalink
comments
Browse files Browse the repository at this point in the history
  • Loading branch information
chadlagore committed Jul 26, 2017
1 parent a15a631 commit 99c2267
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions app/app.go
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,7 @@ var (
)

const (
// BlockQueueSize is the size of the BlockQueue channel.
blockQueueSize = 100
// TransactionQueueSize is the size of the BlockQueue channel.
blockQueueSize = 100
transactionQueueSize = 100
)

Expand Down Expand Up @@ -271,6 +269,6 @@ func (a *App) HandleBlock(blk *blockchain.Block) {
if miner.IsMining() {
miner.RestartMiner(a.Chain, blk)
}
log.Debug("added blk number %d to chain with hash", blk.BlockNumber)
log.Debug("added blk number %d to chain", blk.BlockNumber)
}
}

0 comments on commit 99c2267

Please sign in to comment.