-
Notifications
You must be signed in to change notification settings - Fork 5
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
feat: remove DS from aggregator #138
Conversation
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.
Generally LGTM, leaving a couple of comments to consider.
@@ -112,21 +112,18 @@ type Config struct { | |||
// final gas: 1100 | |||
GasOffset uint64 `mapstructure:"GasOffset"` | |||
|
|||
// RPCURL is the URL of the RPC server | |||
RPCURL string `mapstructure:"RPCURL"` |
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.
Is it checked that this conf param works with the new templated config?
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 tested locally on Kurtosis and it looks ok to me.
UseFullWitness = false | ||
SettlementBackend = "l1" | ||
AggLayerTxTimeout = "5m" | ||
AggLayerURL = "{{AggLayerURL}}" | ||
MaxWitnessRetrievalWorkers = 2 | ||
SyncModeOnlyEnabled = false |
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.
aren't we using this anymore?
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.
Nop, now the witness is requested on the same thread a prover opens when connecting to the aggregator. CDK-Erigon is protected in case we request to much witnesses with the "busy" logic.
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.
Very good point 😅 Just removed it now along an unused file in the state package that was importing it. |
Quality Gate passedIssues Measures |
* feat: remove DS from aggregator * feat: unit tests * fix: rust * fix: seq-sender tests * fix: local_config script * fix: remove unused file * fix: default config * fix: test config * fix: nil l1inforoot * feat: improve coverage * fix: comments * feat: remove DS lib
Description
Removes DS from Aggregator.