Skip to content

Commit

Permalink
[FABG-816] Fix typo in Debugf()
Browse files Browse the repository at this point in the history
Change-Id: I05c6b1a8179fff9d66592803e30a58ed617981ce
Signed-off-by: Nye Liu <nye@blockdaemon.com>
  • Loading branch information
nyetwurk committed Jan 23, 2019
1 parent c6ad3db commit 752dda1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/fab/txn/env.go
Expand Up @@ -140,7 +140,7 @@ type ChannelHeaderOpts struct {
//
// TODO: Determine if this function should be exported after refactoring is completed.
func CreateChannelHeader(headerType common.HeaderType, opts ChannelHeaderOpts) (*common.ChannelHeader, error) {
logger.Debugf("buildChannelHeader - headerType: %s channelID: %s txID: %d epoch: % chaincodeID: %s timestamp: %v", headerType, opts.TxnHeader.channelID, opts.TxnHeader.id, opts.Epoch, opts.ChaincodeID, opts.Timestamp)
logger.Debugf("buildChannelHeader - headerType: %s channelID: %s txID: %d epoch: %d chaincodeID: %s timestamp: %v", headerType, opts.TxnHeader.channelID, opts.TxnHeader.id, opts.Epoch, opts.ChaincodeID, opts.Timestamp)
channelHeader := &common.ChannelHeader{
Type: int32(headerType),
ChannelId: opts.TxnHeader.channelID,
Expand Down

0 comments on commit 752dda1

Please sign in to comment.