Skip to content

Commit

Permalink
fixes after review
Browse files Browse the repository at this point in the history
  • Loading branch information
miiu96 committed Nov 20, 2024
1 parent ba15dcb commit 5e01a06
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions node/chainSimulator/components/nodeFacade.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,6 @@ package components
import (
"errors"
"fmt"
"github.com/multiversx/mx-chain-go/factory"
heartbeat2 "github.com/multiversx/mx-chain-go/node/chainSimulator/components/heartbeat"
"strconv"
"time"

Expand All @@ -14,8 +12,10 @@ import (
"github.com/multiversx/mx-chain-go/common/forking"
"github.com/multiversx/mx-chain-go/config"
"github.com/multiversx/mx-chain-go/facade"
"github.com/multiversx/mx-chain-go/factory"
apiComp "github.com/multiversx/mx-chain-go/factory/api"
nodePack "github.com/multiversx/mx-chain-go/node"
simulatorHeartbeat "github.com/multiversx/mx-chain-go/node/chainSimulator/components/heartbeat"
"github.com/multiversx/mx-chain-go/node/metrics"
"github.com/multiversx/mx-chain-go/process/mock"
)
Expand Down Expand Up @@ -75,7 +75,7 @@ func (node *testOnlyProcessingNode) createFacade(configs config.Configs, apiInte

flagsConfig := configs.FlagsConfig

heartbeatComponents, err := heartbeat2.NewSyncedHeartbeatComponents(monitor)
heartbeatComponents, err := simulatorHeartbeat.NewSyncedHeartbeatComponents(monitor)
if err != nil {
return err
}
Expand Down

0 comments on commit 5e01a06

Please sign in to comment.