mirror of
https://github.com/vacp2p/linea-monorepo.git
synced 2026-01-09 04:08:01 -05:00
Workaround/statesummary failed constraint (#958)
* fix(state): workaround for the failing constraint * minor(comment): details the workaround in a comment
This commit is contained in:
@@ -818,7 +818,16 @@ func storageIntegrationAssignFinal(run *wizard.ProverRuntime, ss Module, smc Hub
|
||||
}
|
||||
|
||||
}
|
||||
svfilterAccountInsert := smartvectors.NewRegular(filterAccountInsert)
|
||||
|
||||
// Due to the constraint being invalid but the lookup of the filter also not being done,
|
||||
// we can assign 1. This column is to be removed with beta-v2.
|
||||
//
|
||||
// svfilterAccountInsert := smartvectors.NewRegular(filterAccountInsert)
|
||||
//
|
||||
// The normal assignment of svFilterAccountInsert is fine but since the constraint is
|
||||
// invalid, (and not used) it is simpler to just assign 1.
|
||||
//
|
||||
svfilterAccountInsert := smartvectors.NewConstant(field.One(), smc.AddressHI.Size())
|
||||
run.AssignColumn("FILTER_CONNECTOR_HUB_STATE_SUMMARY_ACCOUNT_INSERT_FILTER", svfilterAccountInsert)
|
||||
|
||||
isSLoad := run.Spec.Columns.GetHandle("hub.scp_SLOAD_OPERATION")
|
||||
|
||||
Reference in New Issue
Block a user