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
When we use Box on function returning a result, the underlying error type is only known at runtime and not statically known.
There are instances in code where Box is used but there is no handling of dynamic errors in the function
Examples:
zk_prover/src/merkle_sum_tree/tree.js
Function get_leaf_node_hash_preimage
zk_prover/src/merkle_sum_tree/utils/build_tree.rs
Function build_merkle_tree_from_leaves
zk_prover/src/merkle_sum_tree/mst.rs
Function from_params
backend/src/apis/round.rs
Function new
The text was updated successfully, but these errors were encountered:
sachindkagrawal15
changed the title
Dynamic Errors not handled in Box of Errors for Function return
Dynamic Errors not handled in Box of Errors for Function Results
Feb 21, 2024
When we use Box on function returning a result, the underlying error type is only known at runtime and not statically known.
There are instances in code where Box is used but there is no handling of dynamic errors in the function
Examples:
Function get_leaf_node_hash_preimage
Function build_merkle_tree_from_leaves
Function from_params
Function new
The text was updated successfully, but these errors were encountered: