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
In the PR #823 we have changed the signature from VerifyPredicate(predicateContext *PredicateContext, storageSlots []byte) error to VerifyPredicate(predicateContext *PredicateContext, predicates [][]byte) []byte in the latter we return bitsets as a result to CheckPredicates. We can investigate if we can keep a single predicate param in VerifyPredicate and return error then construct bitset in CheckPredicates instead.
The text was updated successfully, but these errors were encountered:
From: #823 (comment)
In the PR #823 we have changed the signature from
VerifyPredicate(predicateContext *PredicateContext, storageSlots []byte) error
toVerifyPredicate(predicateContext *PredicateContext, predicates [][]byte) []byte
in the latter we return bitsets as a result toCheckPredicates
. We can investigate if we can keep a single predicate param inVerifyPredicate
and returnerror
then construct bitset inCheckPredicates
instead.The text was updated successfully, but these errors were encountered: