Skip to content

Commit

Permalink
fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
axenteoctavian committed Nov 21, 2024
1 parent 37b462e commit b2a967c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
1 change: 1 addition & 0 deletions cmd/proxy/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -487,6 +487,7 @@ func createVersionsRegistry(
hasher,
marshalizer,
cfg.GeneralSettings.AllowEntireTxPoolFetch,
runTypeComponents,
)
if err != nil {
return nil, err
Expand Down
3 changes: 3 additions & 0 deletions process/factory/transactionProcessorFactory.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,9 @@ import (
"github.com/multiversx/mx-chain-core-go/core"
"github.com/multiversx/mx-chain-core-go/hashing"
"github.com/multiversx/mx-chain-core-go/marshal"

"github.com/multiversx/mx-chain-proxy-go/facade"
"github.com/multiversx/mx-chain-proxy-go/factory"
"github.com/multiversx/mx-chain-proxy-go/process"
"github.com/multiversx/mx-chain-proxy-go/process/logsevents"
"github.com/multiversx/mx-chain-proxy-go/process/txcost"
Expand All @@ -17,6 +19,7 @@ func CreateTransactionProcessor(
hasher hashing.Hasher,
marshalizer marshal.Marshalizer,
allowEntireTxPoolFetch bool,
runTypeComponents factory.RunTypeComponentsHolder,
) (facade.TransactionProcessor, error) {
newTxCostProcessor := func() (process.TransactionCostHandler, error) {
return txcost.NewTransactionCostProcessor(
Expand Down

0 comments on commit b2a967c

Please sign in to comment.