You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The EspressoReader currently expects several configurations (env vars) that make no sense for its operation, such as:
CARTESI_AUTH_MNEMONIC (it does not submit any tx to the blockchain)
CARTESI_TEST_POSTGRES_ENDPOINT (unused)
CARTESI_TEST_MACHINE_IMAGES_PATH (unused)
PATH (is this used?)
CGO_CFLAGS and CGO_LDFLAGS (unused)
Likewise, there is a lot of code that relates to running the full Node and EvmReader (e.g., internal/repository/claimer.go).
We should clean-up all code that has nothing to do with the EspressoReader, and internalize/copy only the necessary code from the current EvmReader (ideally reuse EvmReader itself, but, if that is not possible, copy only the relevant parts and not the whole thing)
The text was updated successfully, but these errors were encountered:
ideally reuse EvmReader itself, but, if that is not possible, copy only the relevant parts and not the whole thing
the EVM reader in espresso already only contains what's needed by the espresso. Not the whole thing actually. I've looked into this, it is a bit difficult to not re-use the evm reader
The EspressoReader currently expects several configurations (env vars) that make no sense for its operation, such as:
Likewise, there is a lot of code that relates to running the full Node and EvmReader (e.g.,
internal/repository/claimer.go
).We should clean-up all code that has nothing to do with the EspressoReader, and internalize/copy only the necessary code from the current EvmReader (ideally reuse EvmReader itself, but, if that is not possible, copy only the relevant parts and not the whole thing)
The text was updated successfully, but these errors were encountered: