Skip to content

Commit

Permalink
fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
miiu96 committed Mar 1, 2023
1 parent 0277951 commit e7ade61
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion outport/process/transactionsfee/transactionsFeeProcessor.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@ import (
logger "github.com/multiversx/mx-chain-logger-go"
)

const loggerName = "outport/process/transactionsfee"

// ArgTransactionsFeeProcessor holds the arguments needed for creating a new instance of transactionsFeeProcessor
type ArgTransactionsFeeProcessor struct {
Marshaller marshal.Marshalizer
Expand Down Expand Up @@ -40,7 +42,7 @@ func NewTransactionsFeeProcessor(arg ArgTransactionsFeeProcessor) (*transactions
txFeeCalculator: arg.TxFeeCalculator,
shardCoordinator: arg.ShardCoordinator,
txGetter: newTxGetter(arg.TransactionsStorer, arg.Marshaller),
log: logger.GetOrCreate("outport/process/transactionsfee"),
log: logger.GetOrCreate(loggerName),
}, nil
}

Expand Down

0 comments on commit e7ade61

Please sign in to comment.