Skip to content

Commit

Permalink
Restructuring mempool and ledger packages
Browse files Browse the repository at this point in the history
  • Loading branch information
alexsporn committed Mar 8, 2023
1 parent e0cd620 commit 0f37fd7
Show file tree
Hide file tree
Showing 187 changed files with 278 additions and 277 deletions.
2 changes: 1 addition & 1 deletion client/evilspammer/spammer.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (
"go.uber.org/atomic"

"github.com/iotaledger/goshimmer/client/evilwallet"
"github.com/iotaledger/goshimmer/packages/protocol/mempool/vm/devnetvm"
"github.com/iotaledger/goshimmer/packages/protocol/engine/ledger/vm/devnetvm"
"github.com/iotaledger/hive.go/app/configuration"
appLogger "github.com/iotaledger/hive.go/app/logger"
"github.com/iotaledger/hive.go/ds/types"
Expand Down
2 changes: 1 addition & 1 deletion client/evilspammer/spamming_functions.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/evilwallet"
"github.com/iotaledger/goshimmer/packages/protocol/mempool/vm/devnetvm"
"github.com/iotaledger/goshimmer/packages/protocol/engine/ledger/vm/devnetvm"
)

func DataSpammingFunction(s *Spammer) {
Expand Down
2 changes: 1 addition & 1 deletion client/evilwallet/aliasmanager.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
"github.com/pkg/errors"
"go.uber.org/atomic"

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

// region AliasManager /////////////////////////////////////////////////////////////////////////////////////////////////
Expand Down
4 changes: 2 additions & 2 deletions client/evilwallet/connector.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ 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/mempool/utxo"
"github.com/iotaledger/goshimmer/packages/protocol/mempool/vm/devnetvm"
"github.com/iotaledger/goshimmer/packages/protocol/engine/ledger/mempool/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
4 changes: 2 additions & 2 deletions client/evilwallet/evilwallet.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ import (
"github.com/pkg/errors"

"github.com/iotaledger/goshimmer/client/wallet/packages/address"
"github.com/iotaledger/goshimmer/packages/protocol/mempool/utxo"
"github.com/iotaledger/goshimmer/packages/protocol/mempool/vm/devnetvm"
"github.com/iotaledger/goshimmer/packages/protocol/engine/ledger/mempool/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
4 changes: 2 additions & 2 deletions client/evilwallet/options.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ import (

"github.com/pkg/errors"

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

Expand Down
4 changes: 2 additions & 2 deletions client/evilwallet/output_manager.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ import (
"github.com/pkg/errors"

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

Expand Down
4 changes: 2 additions & 2 deletions client/evilwallet/utils.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ package evilwallet

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

// SplitBalanceEqually splits the balance equally between `splitNumber` outputs.
Expand Down
4 changes: 2 additions & 2 deletions client/evilwallet/wallets.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ import (

"github.com/iotaledger/goshimmer/client/wallet/packages/address"
"github.com/iotaledger/goshimmer/client/wallet/packages/seed"
"github.com/iotaledger/goshimmer/packages/protocol/mempool/utxo"
"github.com/iotaledger/goshimmer/packages/protocol/mempool/vm/devnetvm"
"github.com/iotaledger/goshimmer/packages/protocol/engine/ledger/mempool/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/faucet.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import (
"github.com/iotaledger/goshimmer/packages/app/faucet"
"github.com/iotaledger/goshimmer/packages/app/jsonmodels"
"github.com/iotaledger/goshimmer/packages/core/pow"
"github.com/iotaledger/goshimmer/packages/protocol/mempool/vm/devnetvm"
"github.com/iotaledger/goshimmer/packages/protocol/engine/ledger/vm/devnetvm"
"github.com/iotaledger/hive.go/crypto/identity"
)

Expand Down
4 changes: 2 additions & 2 deletions client/wallet/asset.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ import (
"github.com/capossele/asset-registry/pkg/registry"
"github.com/pkg/errors"

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

// Asset represents a container for all the information regarding a colored coin.
Expand Down
2 changes: 1 addition & 1 deletion client/wallet/assetregistry.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (
"github.com/go-resty/resty/v2"
"github.com/pkg/errors"

"github.com/iotaledger/goshimmer/packages/protocol/mempool/vm/devnetvm"
"github.com/iotaledger/goshimmer/packages/protocol/engine/ledger/vm/devnetvm"
"github.com/iotaledger/hive.go/serializer/v2/marshalutil"
"github.com/iotaledger/hive.go/serializer/v2/serix"
)
Expand Down
2 changes: 1 addition & 1 deletion client/wallet/balances.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"sort"
"time"

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

// TimedBalance represents a balance that is time dependent.
Expand Down
4 changes: 2 additions & 2 deletions client/wallet/connector.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ package wallet
import (
"github.com/iotaledger/goshimmer/client/wallet/packages/address"
"github.com/iotaledger/goshimmer/packages/core/confirmation"
"github.com/iotaledger/goshimmer/packages/protocol/mempool/utxo"
"github.com/iotaledger/goshimmer/packages/protocol/mempool/vm/devnetvm"
"github.com/iotaledger/goshimmer/packages/protocol/engine/ledger/mempool/utxo"
"github.com/iotaledger/goshimmer/packages/protocol/engine/ledger/vm/devnetvm"
)

// Connector represents an interface that defines how the wallet interacts with the network. A wallet can either be used
Expand Down
4 changes: 2 additions & 2 deletions client/wallet/output.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ import (
"time"

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

// Output is a wallet specific representation of an output in the IOTA network.
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/mempool/utxo"
"github.com/iotaledger/goshimmer/packages/protocol/engine/ledger/mempool/utxo"
)

// OutputManager keeps track of the outputs.
Expand Down
2 changes: 1 addition & 1 deletion client/wallet/packages/address/address.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package address
import (
"github.com/mr-tron/base58"

"github.com/iotaledger/goshimmer/packages/protocol/mempool/vm/devnetvm"
"github.com/iotaledger/goshimmer/packages/protocol/engine/ledger/vm/devnetvm"
"github.com/iotaledger/hive.go/stringify"
)

Expand Down
2 changes: 1 addition & 1 deletion client/wallet/packages/createnftoptions/options.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package createnftoptions
import (
"github.com/pkg/errors"

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

// CreateNFTOption is a function that provides options.
Expand Down
2 changes: 1 addition & 1 deletion client/wallet/packages/delegateoptions/options.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/mempool/vm/devnetvm"
"github.com/iotaledger/goshimmer/packages/protocol/engine/ledger/vm/devnetvm"
)

// DelegateFundsOptions is a struct that is used to aggregate the optional parameters provided in the DelegateFunds call.
Expand Down
2 changes: 1 addition & 1 deletion client/wallet/packages/deposittonftoptions/options.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package deposittonftoptions
import (
"github.com/pkg/errors"

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

// DepositFundsToNFTOption is a function that provides options.
Expand Down
2 changes: 1 addition & 1 deletion client/wallet/packages/destroynftoptions/options.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package destroynftoptions
import (
"github.com/pkg/errors"

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

// DestroyNFTOption is a function that provides options.
Expand Down
2 changes: 1 addition & 1 deletion client/wallet/packages/reclaimoptions/options.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package reclaimoptions
import (
"github.com/pkg/errors"

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

// ReclaimFundsOption is a function that provides an option.
Expand Down
2 changes: 1 addition & 1 deletion client/wallet/packages/seed/seed.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package seed

import (
"github.com/iotaledger/goshimmer/client/wallet/packages/address"
"github.com/iotaledger/goshimmer/packages/protocol/mempool/vm/devnetvm"
"github.com/iotaledger/goshimmer/packages/protocol/engine/ledger/vm/devnetvm"
"github.com/iotaledger/hive.go/crypto/ed25519"
)

Expand Down
2 changes: 1 addition & 1 deletion client/wallet/packages/sendoptions/options.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/constants"
"github.com/iotaledger/goshimmer/packages/protocol/mempool/vm/devnetvm"
"github.com/iotaledger/goshimmer/packages/protocol/engine/ledger/vm/devnetvm"
)

// SendFundsOption is the type for the optional parameters for the SendFunds call.
Expand Down
2 changes: 1 addition & 1 deletion client/wallet/packages/sweepnftownednftsoptions/options.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package sweepnftownednftsoptions
import (
"github.com/pkg/errors"

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

// SweepNFTOwnedNFTsOption is a function that provides an option.
Expand Down
2 changes: 1 addition & 1 deletion client/wallet/packages/sweepnftownedoptions/options.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package sweepnftownedoptions
import (
"github.com/pkg/errors"

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

// SweepNFTOwnedFundsOption is a function that provides option.
Expand Down
2 changes: 1 addition & 1 deletion client/wallet/packages/transfernftoptions/options.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package transfernftoptions
import (
"github.com/pkg/errors"

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

// TransferNFTOption is a function that provides an option.
Expand Down
2 changes: 1 addition & 1 deletion client/wallet/packages/withdrawfromnftoptions/options.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package withdrawfromnftoptions
import (
"github.com/pkg/errors"

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

// WithdrawFundsFromNFTOption is a function that provides an option.
Expand Down
4 changes: 2 additions & 2 deletions client/wallet/wallet.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ 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/mempool/utxo"
"github.com/iotaledger/goshimmer/packages/protocol/mempool/vm/devnetvm"
"github.com/iotaledger/goshimmer/packages/protocol/engine/ledger/mempool/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"
"github.com/iotaledger/hive.go/lo"
Expand Down
4 changes: 2 additions & 2 deletions client/wallet/webconnector.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ 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/mempool/utxo"
"github.com/iotaledger/goshimmer/packages/protocol/mempool/vm/devnetvm"
"github.com/iotaledger/goshimmer/packages/protocol/engine/ledger/mempool/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,8 +7,8 @@ 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/tangle/booker/virtualvoting"
"github.com/iotaledger/goshimmer/packages/protocol/mempool/utxo"
"github.com/iotaledger/goshimmer/packages/protocol/models"
"github.com/iotaledger/goshimmer/packages/protocol/models/payload"
"github.com/iotaledger/hive.go/core/slot"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import (
"github.com/stretchr/testify/require"

"github.com/iotaledger/goshimmer/packages/protocol"
"github.com/iotaledger/goshimmer/packages/protocol/mempool/vm/mockedvm"
"github.com/iotaledger/goshimmer/packages/protocol/engine/ledger/vm/mockedvm"
"github.com/iotaledger/goshimmer/packages/protocol/models"
"github.com/iotaledger/goshimmer/packages/protocol/models/payload"
"github.com/iotaledger/goshimmer/packages/protocol/tipmanager"
Expand Down
2 changes: 1 addition & 1 deletion packages/app/blockissuer/ratesetter/testframework.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import (
"github.com/iotaledger/goshimmer/packages/protocol/congestioncontrol/icca/scheduler"
"github.com/iotaledger/goshimmer/packages/protocol/engine"
"github.com/iotaledger/goshimmer/packages/protocol/engine/filter"
"github.com/iotaledger/goshimmer/packages/protocol/mempool/vm/mockedvm"
"github.com/iotaledger/goshimmer/packages/protocol/engine/ledger/vm/mockedvm"
"github.com/iotaledger/goshimmer/packages/protocol/models"
"github.com/iotaledger/hive.go/app/configuration"
"github.com/iotaledger/hive.go/app/logger"
Expand Down
2 changes: 1 addition & 1 deletion packages/app/collector/types.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package collector
import (
"fmt"

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

Expand Down
2 changes: 1 addition & 1 deletion packages/app/faucet/request.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/mempool/vm/devnetvm"
"github.com/iotaledger/goshimmer/packages/protocol/engine/ledger/vm/devnetvm"
"github.com/iotaledger/goshimmer/packages/protocol/models"
"github.com/iotaledger/goshimmer/packages/protocol/models/payload"
"github.com/iotaledger/goshimmer/packages/protocol/models/payloadtype"
Expand Down
2 changes: 1 addition & 1 deletion packages/app/faucet/request_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (
"github.com/stretchr/testify/require"

"github.com/iotaledger/goshimmer/packages/core/commitment"
"github.com/iotaledger/goshimmer/packages/protocol/mempool/vm/devnetvm"
"github.com/iotaledger/goshimmer/packages/protocol/engine/ledger/vm/devnetvm"
"github.com/iotaledger/goshimmer/packages/protocol/models"
"github.com/iotaledger/goshimmer/packages/protocol/models/payload"
"github.com/iotaledger/hive.go/crypto/ed25519"
Expand Down
8 changes: 4 additions & 4 deletions packages/app/jsonmodels/ledgerstate.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@ import (
"github.com/pkg/errors"

"github.com/iotaledger/goshimmer/packages/core/confirmation"
"github.com/iotaledger/goshimmer/packages/protocol/mempool"
"github.com/iotaledger/goshimmer/packages/protocol/mempool/conflictdag"
"github.com/iotaledger/goshimmer/packages/protocol/mempool/utxo"
"github.com/iotaledger/goshimmer/packages/protocol/mempool/vm/devnetvm"
"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/vm/devnetvm"
"github.com/iotaledger/goshimmer/packages/typeutils"
"github.com/iotaledger/hive.go/lo"
)
Expand Down
8 changes: 4 additions & 4 deletions packages/app/jsonmodels/webapi.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@ package jsonmodels
import (
"strconv"

"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/vm/devnetvm"
"github.com/iotaledger/goshimmer/packages/protocol/engine/sybilprotection"
"github.com/iotaledger/goshimmer/packages/protocol/mempool"
"github.com/iotaledger/goshimmer/packages/protocol/mempool/conflictdag"
"github.com/iotaledger/goshimmer/packages/protocol/mempool/utxo"
"github.com/iotaledger/goshimmer/packages/protocol/mempool/vm/devnetvm"
"github.com/iotaledger/goshimmer/packages/protocol/models"
"github.com/iotaledger/hive.go/crypto/identity"
"github.com/iotaledger/hive.go/ds/advancedset"
Expand Down
4 changes: 2 additions & 2 deletions packages/app/retainer/commitment.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ import (
"context"

"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/notarization"
"github.com/iotaledger/goshimmer/packages/protocol/mempool"
"github.com/iotaledger/goshimmer/packages/protocol/mempool/utxo"
"github.com/iotaledger/goshimmer/packages/protocol/models"
"github.com/iotaledger/hive.go/objectstorage/generic/model"
"github.com/iotaledger/hive.go/serializer/v2/serix"
Expand Down
Loading

0 comments on commit 0f37fd7

Please sign in to comment.