-
Notifications
You must be signed in to change notification settings - Fork 205
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
reference elrond-go-storage #4349
reference elrond-go-storage #4349
Conversation
Codecov Report
@@ Coverage Diff @@
## development #4349 +/- ##
===============================================
- Coverage 75.25% 73.07% -2.19%
===============================================
Files 614 634 +20
Lines 82115 83442 +1327
===============================================
- Hits 61794 60973 -821
- Misses 15643 17727 +2084
- Partials 4678 4742 +64
Help us with your feedback. Take ten seconds to tell us how you rate us. Have a feature suggestion? Share it here. |
# Conflicts: # update/factory/dataTrieFactory.go
# Conflicts: # .github/workflows/build_and_test.yml # .github/workflows/code-coverage.yml # .github/workflows/create_release.yml # .github/workflows/golangci-lint.yml
# Conflicts: # epochStart/bootstrap/syncValidatorStatus.go # errors/errors.go # factory/mock/coreComponentsMock.go # genesis/process/genesisBlockCreator.go # go.mod # heartbeat/process/monitor.go # integrationTests/testP2PNode.go # integrationTests/testProcessorNodeWithCoordinator.go # integrationTests/testProcessorNodeWithMultisigner.go # node/mock/factory/coreComponentsStub.go # process/block/preprocess/transactions.go # process/smartContract/hooks/blockChainHook.go
factory/processComponents.go
Outdated
@@ -15,6 +15,9 @@ import ( | |||
dataBlock "github.com/ElrondNetwork/elrond-go-core/data/block" | |||
"github.com/ElrondNetwork/elrond-go-core/data/indexer" | |||
logger "github.com/ElrondNetwork/elrond-go-logger" | |||
storageErrorsFactory "github.com/ElrondNetwork/elrond-go-storage/factory" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
storageErrorsFactory "github.com/ElrondNetwork/elrond-go-storage/factory" | |
storageFactory "github.com/ElrondNetwork/elrond-go-storage/factory" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
storageFactory
is already used. renamed to storageRepoFactory
"github.com/ElrondNetwork/elrond-go/storage" | ||
"github.com/ElrondNetwork/elrond-go/storage/timecache" | ||
"github.com/ElrondNetwork/elrond-go-storage/timecache" | ||
storage "github.com/ElrondNetwork/elrond-go-storage/types" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
maybe
storage "github.com/ElrondNetwork/elrond-go-storage/types" | |
storageTypes "github.com/ElrondNetwork/elrond-go-storage/types" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
done
go.mod
Outdated
github.com/ElrondNetwork/covalent-indexer-go v1.0.6 | ||
github.com/ElrondNetwork/elastic-indexer-go v1.2.38 | ||
github.com/ElrondNetwork/elrond-go-core v1.1.18 | ||
github.com/ElrondNetwork/elrond-go-crypto v1.0.1 | ||
github.com/ElrondNetwork/elrond-go-logger v1.0.7 | ||
github.com/ElrondNetwork/elrond-go-storage v0.0.0-20220811102708-2dc21ec20863 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
don't forget to replace with a tag before merge
maybe add as well arwen tags
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I have added a tag for elrond-go-storage
. For arwen, I think they should come in a new PR
018294d
The base branch was changed.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
System test passed.
Description of the reasoning behind the pull request (what feature was missing / how the problem was manifesting itself / what was the motive behind the refactoring)
elrond-go-storage
Proposed Changes
Testing procedure