Skip to content

Commit

Permalink
Moved utxo package from mempool to ledger
Browse files Browse the repository at this point in the history
  • Loading branch information
alexsporn committed Mar 8, 2023
1 parent 0b233c2 commit 7a7061d
Show file tree
Hide file tree
Showing 96 changed files with 90 additions and 90 deletions.
2 changes: 1 addition & 1 deletion client/evilwallet/connector.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (
"github.com/iotaledger/goshimmer/client/wallet"
"github.com/iotaledger/goshimmer/packages/app/jsonmodels"
"github.com/iotaledger/goshimmer/packages/core/confirmation"
"github.com/iotaledger/goshimmer/packages/protocol/engine/ledger/mempool/utxo"
"github.com/iotaledger/goshimmer/packages/protocol/engine/ledger/utxo"
"github.com/iotaledger/goshimmer/packages/protocol/engine/ledger/vm/devnetvm"
"github.com/iotaledger/goshimmer/packages/protocol/models"
"github.com/iotaledger/hive.go/crypto/identity"
Expand Down
2 changes: 1 addition & 1 deletion client/evilwallet/evilwallet.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import (
"github.com/pkg/errors"

"github.com/iotaledger/goshimmer/client/wallet/packages/address"
"github.com/iotaledger/goshimmer/packages/protocol/engine/ledger/mempool/utxo"
"github.com/iotaledger/goshimmer/packages/protocol/engine/ledger/utxo"
"github.com/iotaledger/goshimmer/packages/protocol/engine/ledger/vm/devnetvm"
"github.com/iotaledger/hive.go/crypto/identity"
"github.com/iotaledger/hive.go/ds/types"
Expand Down
2 changes: 1 addition & 1 deletion client/evilwallet/options.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (

"github.com/pkg/errors"

"github.com/iotaledger/goshimmer/packages/protocol/engine/ledger/mempool/utxo"
"github.com/iotaledger/goshimmer/packages/protocol/engine/ledger/utxo"
"github.com/iotaledger/goshimmer/packages/protocol/engine/ledger/vm/devnetvm"
"github.com/iotaledger/hive.go/ds/types"
)
Expand Down
2 changes: 1 addition & 1 deletion client/evilwallet/output_manager.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (
"github.com/pkg/errors"

"github.com/iotaledger/goshimmer/client/wallet/packages/address"
"github.com/iotaledger/goshimmer/packages/protocol/engine/ledger/mempool/utxo"
"github.com/iotaledger/goshimmer/packages/protocol/engine/ledger/utxo"
"github.com/iotaledger/goshimmer/packages/protocol/engine/ledger/vm/devnetvm"
"github.com/iotaledger/hive.go/ds/types"
)
Expand Down
2 changes: 1 addition & 1 deletion client/evilwallet/utils.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package evilwallet

import (
"github.com/iotaledger/goshimmer/packages/app/jsonmodels"
"github.com/iotaledger/goshimmer/packages/protocol/engine/ledger/mempool/utxo"
"github.com/iotaledger/goshimmer/packages/protocol/engine/ledger/utxo"
"github.com/iotaledger/goshimmer/packages/protocol/engine/ledger/vm/devnetvm"
)

Expand Down
2 changes: 1 addition & 1 deletion client/evilwallet/wallets.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (

"github.com/iotaledger/goshimmer/client/wallet/packages/address"
"github.com/iotaledger/goshimmer/client/wallet/packages/seed"
"github.com/iotaledger/goshimmer/packages/protocol/engine/ledger/mempool/utxo"
"github.com/iotaledger/goshimmer/packages/protocol/engine/ledger/utxo"
"github.com/iotaledger/goshimmer/packages/protocol/engine/ledger/vm/devnetvm"
"github.com/iotaledger/hive.go/ds/types"
"github.com/iotaledger/hive.go/lo"
Expand Down
2 changes: 1 addition & 1 deletion client/wallet/asset.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"github.com/capossele/asset-registry/pkg/registry"
"github.com/pkg/errors"

"github.com/iotaledger/goshimmer/packages/protocol/engine/ledger/mempool/utxo"
"github.com/iotaledger/goshimmer/packages/protocol/engine/ledger/utxo"
"github.com/iotaledger/goshimmer/packages/protocol/engine/ledger/vm/devnetvm"
)

Expand Down
2 changes: 1 addition & 1 deletion client/wallet/connector.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package wallet
import (
"github.com/iotaledger/goshimmer/client/wallet/packages/address"
"github.com/iotaledger/goshimmer/packages/core/confirmation"
"github.com/iotaledger/goshimmer/packages/protocol/engine/ledger/mempool/utxo"
"github.com/iotaledger/goshimmer/packages/protocol/engine/ledger/utxo"
"github.com/iotaledger/goshimmer/packages/protocol/engine/ledger/vm/devnetvm"
)

Expand Down
2 changes: 1 addition & 1 deletion client/wallet/output.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"time"

"github.com/iotaledger/goshimmer/client/wallet/packages/address"
"github.com/iotaledger/goshimmer/packages/protocol/engine/ledger/mempool/utxo"
"github.com/iotaledger/goshimmer/packages/protocol/engine/ledger/utxo"
"github.com/iotaledger/goshimmer/packages/protocol/engine/ledger/vm/devnetvm"
)

Expand Down
2 changes: 1 addition & 1 deletion client/wallet/output_manager.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package wallet

import (
"github.com/iotaledger/goshimmer/client/wallet/packages/address"
"github.com/iotaledger/goshimmer/packages/protocol/engine/ledger/mempool/utxo"
"github.com/iotaledger/goshimmer/packages/protocol/engine/ledger/utxo"
)

// OutputManager keeps track of the outputs.
Expand Down
2 changes: 1 addition & 1 deletion client/wallet/wallet.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ import (
"github.com/iotaledger/goshimmer/client/wallet/packages/sweepnftownedoptions"
"github.com/iotaledger/goshimmer/client/wallet/packages/transfernftoptions"
"github.com/iotaledger/goshimmer/client/wallet/packages/withdrawfromnftoptions"
"github.com/iotaledger/goshimmer/packages/protocol/engine/ledger/mempool/utxo"
"github.com/iotaledger/goshimmer/packages/protocol/engine/ledger/utxo"
"github.com/iotaledger/goshimmer/packages/protocol/engine/ledger/vm/devnetvm"
"github.com/iotaledger/hive.go/crypto/identity"
"github.com/iotaledger/hive.go/ds/bitmask"
Expand Down
2 changes: 1 addition & 1 deletion client/wallet/webconnector.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
"github.com/iotaledger/goshimmer/client"
"github.com/iotaledger/goshimmer/client/wallet/packages/address"
"github.com/iotaledger/goshimmer/packages/core/confirmation"
"github.com/iotaledger/goshimmer/packages/protocol/engine/ledger/mempool/utxo"
"github.com/iotaledger/goshimmer/packages/protocol/engine/ledger/utxo"
"github.com/iotaledger/goshimmer/packages/protocol/engine/ledger/vm/devnetvm"
"github.com/iotaledger/hive.go/lo"
)
Expand Down
2 changes: 1 addition & 1 deletion packages/app/blockissuer/blockfactory/referenceprovider.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (
"github.com/pkg/errors"

"github.com/iotaledger/goshimmer/packages/protocol"
"github.com/iotaledger/goshimmer/packages/protocol/engine/ledger/mempool/utxo"
"github.com/iotaledger/goshimmer/packages/protocol/engine/ledger/utxo"
"github.com/iotaledger/goshimmer/packages/protocol/engine/tangle/booker/virtualvoting"
"github.com/iotaledger/goshimmer/packages/protocol/models"
"github.com/iotaledger/goshimmer/packages/protocol/models/payload"
Expand Down
2 changes: 1 addition & 1 deletion packages/app/jsonmodels/ledgerstate.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import (
"github.com/iotaledger/goshimmer/packages/core/confirmation"
"github.com/iotaledger/goshimmer/packages/protocol/engine/ledger/mempool"
"github.com/iotaledger/goshimmer/packages/protocol/engine/ledger/mempool/conflictdag"
"github.com/iotaledger/goshimmer/packages/protocol/engine/ledger/mempool/utxo"
"github.com/iotaledger/goshimmer/packages/protocol/engine/ledger/utxo"
"github.com/iotaledger/goshimmer/packages/protocol/engine/ledger/vm/devnetvm"
"github.com/iotaledger/goshimmer/packages/typeutils"
"github.com/iotaledger/hive.go/lo"
Expand Down
2 changes: 1 addition & 1 deletion packages/app/jsonmodels/webapi.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (

"github.com/iotaledger/goshimmer/packages/protocol/engine/ledger/mempool"
"github.com/iotaledger/goshimmer/packages/protocol/engine/ledger/mempool/conflictdag"
"github.com/iotaledger/goshimmer/packages/protocol/engine/ledger/mempool/utxo"
"github.com/iotaledger/goshimmer/packages/protocol/engine/ledger/utxo"
"github.com/iotaledger/goshimmer/packages/protocol/engine/ledger/vm/devnetvm"
"github.com/iotaledger/goshimmer/packages/protocol/engine/sybilprotection"
"github.com/iotaledger/goshimmer/packages/protocol/models"
Expand Down
2 changes: 1 addition & 1 deletion packages/app/retainer/commitment.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (

"github.com/iotaledger/goshimmer/packages/core/commitment"
"github.com/iotaledger/goshimmer/packages/protocol/engine/ledger/mempool"
"github.com/iotaledger/goshimmer/packages/protocol/engine/ledger/mempool/utxo"
"github.com/iotaledger/goshimmer/packages/protocol/engine/ledger/utxo"
"github.com/iotaledger/goshimmer/packages/protocol/engine/notarization"
"github.com/iotaledger/goshimmer/packages/protocol/models"
"github.com/iotaledger/hive.go/objectstorage/generic/model"
Expand Down
2 changes: 1 addition & 1 deletion packages/app/retainer/metadata.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (

"github.com/iotaledger/goshimmer/packages/protocol/congestioncontrol/icca/scheduler"
"github.com/iotaledger/goshimmer/packages/protocol/engine/consensus/blockgadget"
"github.com/iotaledger/goshimmer/packages/protocol/engine/ledger/mempool/utxo"
"github.com/iotaledger/goshimmer/packages/protocol/engine/ledger/utxo"
"github.com/iotaledger/goshimmer/packages/protocol/engine/tangle/blockdag"
"github.com/iotaledger/goshimmer/packages/protocol/engine/tangle/booker/markers"
"github.com/iotaledger/goshimmer/packages/protocol/engine/tangle/booker/virtualvoting"
Expand Down
2 changes: 1 addition & 1 deletion packages/app/retainer/retainer.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (
"github.com/iotaledger/goshimmer/packages/protocol"
"github.com/iotaledger/goshimmer/packages/protocol/congestioncontrol/icca/scheduler"
"github.com/iotaledger/goshimmer/packages/protocol/engine/consensus/blockgadget"
"github.com/iotaledger/goshimmer/packages/protocol/engine/ledger/mempool/utxo"
"github.com/iotaledger/goshimmer/packages/protocol/engine/ledger/utxo"
"github.com/iotaledger/goshimmer/packages/protocol/engine/notarization"
"github.com/iotaledger/goshimmer/packages/protocol/engine/tangle/blockdag"
"github.com/iotaledger/goshimmer/packages/protocol/engine/tangle/booker"
Expand Down
2 changes: 1 addition & 1 deletion packages/app/retainer/retainer_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import (
"github.com/iotaledger/goshimmer/packages/core/commitment"
"github.com/iotaledger/goshimmer/packages/core/database"
"github.com/iotaledger/goshimmer/packages/protocol"
"github.com/iotaledger/goshimmer/packages/protocol/engine/ledger/mempool/utxo"
"github.com/iotaledger/goshimmer/packages/protocol/engine/ledger/utxo"
"github.com/iotaledger/goshimmer/packages/protocol/engine/ledger/vm/devnetvm"
"github.com/iotaledger/goshimmer/packages/protocol/engine/tangle/booker/markers"
"github.com/iotaledger/goshimmer/packages/protocol/models"
Expand Down
2 changes: 1 addition & 1 deletion packages/core/snapshotcreator/snapshotcreator.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import (
"github.com/iotaledger/goshimmer/packages/protocol/engine"
"github.com/iotaledger/goshimmer/packages/protocol/engine/clock/blocktime"
"github.com/iotaledger/goshimmer/packages/protocol/engine/ledger/mempool"
"github.com/iotaledger/goshimmer/packages/protocol/engine/ledger/mempool/utxo"
"github.com/iotaledger/goshimmer/packages/protocol/engine/ledger/utxo"
"github.com/iotaledger/goshimmer/packages/protocol/engine/ledger/utxoledger"
"github.com/iotaledger/goshimmer/packages/protocol/engine/ledger/vm"
"github.com/iotaledger/goshimmer/packages/protocol/engine/ledger/vm/devnetvm"
Expand Down
2 changes: 1 addition & 1 deletion packages/core/votes/conflicttracker/testframework.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (

"github.com/iotaledger/goshimmer/packages/core/votes"
"github.com/iotaledger/goshimmer/packages/protocol/engine/ledger/mempool/conflictdag"
"github.com/iotaledger/goshimmer/packages/protocol/engine/ledger/mempool/utxo"
"github.com/iotaledger/goshimmer/packages/protocol/engine/ledger/utxo"
"github.com/iotaledger/goshimmer/packages/protocol/engine/sybilprotection"
"github.com/iotaledger/hive.go/constraints"
"github.com/iotaledger/hive.go/crypto/identity"
Expand Down
2 changes: 1 addition & 1 deletion packages/protocol/engine/consensus/blockgadget/gadget.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import (
"github.com/iotaledger/goshimmer/packages/core/votes/sequencetracker"
"github.com/iotaledger/goshimmer/packages/protocol/engine/eviction"
"github.com/iotaledger/goshimmer/packages/protocol/engine/ledger/mempool/conflictdag"
"github.com/iotaledger/goshimmer/packages/protocol/engine/ledger/mempool/utxo"
"github.com/iotaledger/goshimmer/packages/protocol/engine/ledger/utxo"
"github.com/iotaledger/goshimmer/packages/protocol/engine/tangle"
"github.com/iotaledger/goshimmer/packages/protocol/engine/tangle/booker/markers"
"github.com/iotaledger/goshimmer/packages/protocol/engine/tangle/booker/virtualvoting"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import (
"github.com/iotaledger/goshimmer/packages/core/votes"
"github.com/iotaledger/goshimmer/packages/protocol/engine/ledger/mempool"
"github.com/iotaledger/goshimmer/packages/protocol/engine/ledger/mempool/conflictdag"
"github.com/iotaledger/goshimmer/packages/protocol/engine/ledger/mempool/utxo"
"github.com/iotaledger/goshimmer/packages/protocol/engine/ledger/utxo"
"github.com/iotaledger/goshimmer/packages/protocol/engine/tangle"
"github.com/iotaledger/goshimmer/packages/protocol/engine/tangle/blockdag"
"github.com/iotaledger/goshimmer/packages/protocol/engine/tangle/booker"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"sort"

"github.com/iotaledger/goshimmer/packages/protocol/engine/ledger/mempool/conflictdag"
"github.com/iotaledger/goshimmer/packages/protocol/engine/ledger/mempool/utxo"
"github.com/iotaledger/goshimmer/packages/protocol/engine/ledger/utxo"
"github.com/iotaledger/hive.go/ds/set"
"github.com/iotaledger/hive.go/ds/walker"
"github.com/iotaledger/hive.go/lo"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import (

"github.com/iotaledger/goshimmer/packages/core/confirmation"
"github.com/iotaledger/goshimmer/packages/protocol/engine/ledger/mempool/conflictdag"
"github.com/iotaledger/goshimmer/packages/protocol/engine/ledger/mempool/utxo"
"github.com/iotaledger/goshimmer/packages/protocol/engine/ledger/utxo"
"github.com/iotaledger/hive.go/ds/advancedset"
"github.com/iotaledger/hive.go/ds/types"
)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (
"github.com/stretchr/testify/require"

"github.com/iotaledger/goshimmer/packages/core/confirmation"
"github.com/iotaledger/goshimmer/packages/protocol/engine/ledger/mempool/utxo"
"github.com/iotaledger/goshimmer/packages/protocol/engine/ledger/utxo"
"github.com/iotaledger/hive.go/ds/advancedset"
"github.com/iotaledger/hive.go/lo"
"github.com/iotaledger/hive.go/runtime/debug"
Expand Down
2 changes: 1 addition & 1 deletion packages/protocol/engine/ledger/mempool/events.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"context"

"github.com/iotaledger/goshimmer/packages/protocol/engine/ledger/mempool/conflictdag"
"github.com/iotaledger/goshimmer/packages/protocol/engine/ledger/mempool/utxo"
"github.com/iotaledger/goshimmer/packages/protocol/engine/ledger/utxo"
"github.com/iotaledger/hive.go/core/slot"
"github.com/iotaledger/hive.go/ds/advancedset"
"github.com/iotaledger/hive.go/runtime/event"
Expand Down
2 changes: 1 addition & 1 deletion packages/protocol/engine/ledger/mempool/mempool.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
"github.com/iotaledger/goshimmer/packages/core/confirmation"
"github.com/iotaledger/goshimmer/packages/core/module"
"github.com/iotaledger/goshimmer/packages/protocol/engine/ledger/mempool/conflictdag"
"github.com/iotaledger/goshimmer/packages/protocol/engine/ledger/mempool/utxo"
"github.com/iotaledger/goshimmer/packages/protocol/engine/ledger/utxo"
"github.com/iotaledger/goshimmer/packages/protocol/engine/ledger/vm"
"github.com/iotaledger/hive.go/core/slot"
"github.com/iotaledger/hive.go/ds/walker"
Expand Down
2 changes: 1 addition & 1 deletion packages/protocol/engine/ledger/mempool/models.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"time"

"github.com/iotaledger/goshimmer/packages/core/confirmation"
"github.com/iotaledger/goshimmer/packages/protocol/engine/ledger/mempool/utxo"
"github.com/iotaledger/goshimmer/packages/protocol/engine/ledger/utxo"
"github.com/iotaledger/hive.go/core/slot"
"github.com/iotaledger/hive.go/crypto/identity"
"github.com/iotaledger/hive.go/ds/advancedset"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package mempool
import (
"fmt"

"github.com/iotaledger/goshimmer/packages/protocol/engine/ledger/mempool/utxo"
"github.com/iotaledger/goshimmer/packages/protocol/engine/ledger/utxo"
"github.com/iotaledger/goshimmer/packages/protocol/engine/ledger/vm/devnetvm"
"github.com/iotaledger/goshimmer/packages/protocol/engine/ledger/vm/mockedvm"
"github.com/iotaledger/hive.go/core/slot"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (
"github.com/iotaledger/goshimmer/packages/core/cerrors"
"github.com/iotaledger/goshimmer/packages/core/confirmation"
"github.com/iotaledger/goshimmer/packages/protocol/engine/ledger/mempool"
"github.com/iotaledger/goshimmer/packages/protocol/engine/ledger/mempool/utxo"
"github.com/iotaledger/goshimmer/packages/protocol/engine/ledger/utxo"
"github.com/iotaledger/goshimmer/packages/protocol/engine/ledger/vm/devnetvm"
"github.com/iotaledger/hive.go/core/dataflow"
"github.com/iotaledger/hive.go/crypto/identity"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
"github.com/pkg/errors"

"github.com/iotaledger/goshimmer/packages/protocol/engine/ledger/mempool"
"github.com/iotaledger/goshimmer/packages/protocol/engine/ledger/mempool/utxo"
"github.com/iotaledger/goshimmer/packages/protocol/engine/ledger/utxo"
"github.com/iotaledger/hive.go/core/dataflow"
)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import (
"github.com/iotaledger/goshimmer/packages/protocol/engine"
"github.com/iotaledger/goshimmer/packages/protocol/engine/ledger/mempool"
"github.com/iotaledger/goshimmer/packages/protocol/engine/ledger/mempool/conflictdag"
"github.com/iotaledger/goshimmer/packages/protocol/engine/ledger/mempool/utxo"
"github.com/iotaledger/goshimmer/packages/protocol/engine/ledger/utxo"
"github.com/iotaledger/goshimmer/packages/protocol/engine/ledger/vm"
"github.com/iotaledger/goshimmer/packages/protocol/engine/ledger/vm/mockedvm"
"github.com/iotaledger/goshimmer/packages/storage"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import (
"github.com/iotaledger/goshimmer/packages/core/confirmation"
"github.com/iotaledger/goshimmer/packages/protocol/engine/ledger/mempool"
"github.com/iotaledger/goshimmer/packages/protocol/engine/ledger/mempool/realitiesledger"
"github.com/iotaledger/goshimmer/packages/protocol/engine/ledger/mempool/utxo"
"github.com/iotaledger/goshimmer/packages/protocol/engine/ledger/utxo"
"github.com/iotaledger/hive.go/runtime/workerpool"
)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import (
"github.com/iotaledger/goshimmer/packages/core/cerrors"
"github.com/iotaledger/goshimmer/packages/core/database"
"github.com/iotaledger/goshimmer/packages/protocol/engine/ledger/mempool"
"github.com/iotaledger/goshimmer/packages/protocol/engine/ledger/mempool/utxo"
"github.com/iotaledger/goshimmer/packages/protocol/engine/ledger/utxo"
"github.com/iotaledger/goshimmer/packages/protocol/engine/ledger/vm"
"github.com/iotaledger/hive.go/core/dataflow"
"github.com/iotaledger/hive.go/ds/walker"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (
"github.com/iotaledger/goshimmer/packages/core/confirmation"
"github.com/iotaledger/goshimmer/packages/protocol/engine/ledger/mempool"
"github.com/iotaledger/goshimmer/packages/protocol/engine/ledger/mempool/conflictdag"
"github.com/iotaledger/goshimmer/packages/protocol/engine/ledger/mempool/utxo"
"github.com/iotaledger/goshimmer/packages/protocol/engine/ledger/utxo"
"github.com/iotaledger/hive.go/ds/advancedset"
"github.com/iotaledger/hive.go/ds/set"
"github.com/iotaledger/hive.go/ds/walker"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (

"github.com/iotaledger/goshimmer/packages/core/cerrors"
"github.com/iotaledger/goshimmer/packages/protocol/engine/ledger/mempool"
"github.com/iotaledger/goshimmer/packages/protocol/engine/ledger/mempool/utxo"
"github.com/iotaledger/goshimmer/packages/protocol/engine/ledger/utxo"
"github.com/iotaledger/hive.go/core/dataflow"
"github.com/iotaledger/hive.go/ds/walker"
)
Expand Down
2 changes: 1 addition & 1 deletion packages/protocol/engine/ledger/mempool/testframework.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import (

"github.com/iotaledger/goshimmer/packages/core/confirmation"
"github.com/iotaledger/goshimmer/packages/protocol/engine/ledger/mempool/conflictdag"
"github.com/iotaledger/goshimmer/packages/protocol/engine/ledger/mempool/utxo"
"github.com/iotaledger/goshimmer/packages/protocol/engine/ledger/utxo"
"github.com/iotaledger/goshimmer/packages/protocol/engine/ledger/vm/mockedvm"
"github.com/iotaledger/hive.go/ds/advancedset"
)
Expand Down
2 changes: 1 addition & 1 deletion packages/protocol/engine/ledger/unspentoutputs.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"github.com/iotaledger/goshimmer/packages/core/module"
"github.com/iotaledger/goshimmer/packages/core/traits"
"github.com/iotaledger/goshimmer/packages/protocol/engine/ledger/mempool"
"github.com/iotaledger/goshimmer/packages/protocol/engine/ledger/mempool/utxo"
"github.com/iotaledger/goshimmer/packages/protocol/engine/ledger/utxo"
"github.com/iotaledger/hive.go/ads"
)

Expand Down
2 changes: 1 addition & 1 deletion packages/protocol/engine/ledger/utxoledger/statediffs.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import (
"github.com/iotaledger/goshimmer/packages/protocol/engine"
"github.com/iotaledger/goshimmer/packages/protocol/engine/ledger"
"github.com/iotaledger/goshimmer/packages/protocol/engine/ledger/mempool"
"github.com/iotaledger/goshimmer/packages/protocol/engine/ledger/mempool/utxo"
"github.com/iotaledger/goshimmer/packages/protocol/engine/ledger/utxo"
"github.com/iotaledger/goshimmer/packages/storage"
"github.com/iotaledger/hive.go/core/slot"
"github.com/iotaledger/hive.go/kvstore"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import (
"github.com/iotaledger/goshimmer/packages/protocol/engine"
"github.com/iotaledger/goshimmer/packages/protocol/engine/ledger"
"github.com/iotaledger/goshimmer/packages/protocol/engine/ledger/mempool"
"github.com/iotaledger/goshimmer/packages/protocol/engine/ledger/mempool/utxo"
"github.com/iotaledger/goshimmer/packages/protocol/engine/ledger/utxo"
"github.com/iotaledger/hive.go/ads"
"github.com/iotaledger/hive.go/core/slot"
"github.com/iotaledger/hive.go/ds/types"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
"github.com/iotaledger/goshimmer/packages/core/cerrors"
"github.com/iotaledger/goshimmer/packages/core/database"
"github.com/iotaledger/goshimmer/packages/protocol/engine/ledger/mempool"
"github.com/iotaledger/goshimmer/packages/protocol/engine/ledger/mempool/utxo"
"github.com/iotaledger/goshimmer/packages/protocol/engine/ledger/utxo"
"github.com/iotaledger/goshimmer/packages/protocol/engine/ledger/vm/devnetvm"
"github.com/iotaledger/hive.go/objectstorage"
"github.com/iotaledger/hive.go/objectstorage/generic"
Expand Down
Loading

0 comments on commit 7a7061d

Please sign in to comment.