Add missing argument to checkpoint.

This commit is contained in:
Joel Burget 2018-02-01 17:18:12 -05:00
parent b78f82952e
commit d21f5e5284
1 changed files with 1 additions and 1 deletions

View File

@ -326,7 +326,7 @@ func (pm *ProtocolManager) logNewlyAcceptedTransactions(preSyncHead *types.Block
} }
for _, block := range blocks { for _, block := range blocks {
for _, tx := range block.Transactions() { for _, tx := range block.Transactions() {
log.EmitCheckpoint(log.TxAccepted, tx.Hash().Hex()) log.EmitCheckpoint(log.TxAccepted, "tx", tx.Hash().Hex())
} }
} }
} }