Currently erigon-lib is built as a standalone module , and has its own go.mod. This setup is too prohibitive as it doesn't allow for the import of packages from the root erigon directory (e.g. core/state/types ) .
This PR addresses this problem by making erigon-lib a standard inner package of the main project.
Currently
erigon-lib
is built as a standalone module , and has its owngo.mod
. This setup is too prohibitive as it doesn't allow for the import of packages from the root erigon directory (e.g.core/state/types
) .This PR addresses this problem by making
erigon-lib
a standard inner package of the main project.