Skip to content
This repository has been archived by the owner on Aug 7, 2023. It is now read-only.

Commit

Permalink
fix singular case for stake transactions (decred#545)
Browse files Browse the repository at this point in the history
  • Loading branch information
haakonn authored and jolan committed Jan 16, 2017
1 parent be59de8 commit 8e2042e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion blocklogger.go
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ func (b *blockProgressLogger) logBlockHeight(block *dcrutil.Block) {
txStr = "transaction"
}
stxStr := "stake transactions"
if b.receivedLogTx == 1 {
if b.receivedLogSTx == 1 {
stxStr = "stake transaction"
}
b.subsystemLogger.Infof("%s %d %s in the last %s (%d %s, %d %s, height "+
Expand Down

0 comments on commit 8e2042e

Please sign in to comment.