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
We had an issue where two components in different repos (cdk and zkevm-ethtx-manager) have their own initialization of meddler for sqlite, which were different for HashMeddler. aggsender introduced an additional logic in the HashMeddler for handling nullable hash fields, which zkevm-eth-txmanager did not have, so when cdk node was run with both eth-txmanager and aggsender, the eth-txmanager initialized meddler with its own custom meddlers, which resulted in unsuccessful saving of new certificates to the sqlitedb, since meddler is a global instance in the app, and it can be initialized only once.
The text was updated successfully, but these errors were encountered:
We had an issue where two components in different repos (
cdk
andzkevm-ethtx-manager
) have their own initialization ofmeddler
forsqlite
, which were different forHashMeddler
.aggsender
introduced an additional logic in theHashMeddler
for handling nullable hash fields, whichzkevm-eth-txmanager
did not have, so when cdk node was run with botheth-txmanager
andaggsender
, theeth-txmanager
initializedmeddler
with its own custom meddlers, which resulted in unsuccessful saving of new certificates to thesqlite
db
, since meddler is a global instance in the app, and it can be initialized only once.The text was updated successfully, but these errors were encountered: