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
Using DefaultIsZeroes requires us to implement Default on SpendAuth and Binding, but those are supposed to be unconstructable. This was solved by adding a Default impl which calls unimplemented! but that doesn't seem ideal.
Using
DefaultIsZeroes
requires us to implementDefault
onSpendAuth
andBinding
, but those are supposed to be unconstructable. This was solved by adding aDefault
impl which callsunimplemented!
but that doesn't seem ideal.Check for an alternative and remove the
Default
impls. One possibility is to explicitly implementZeroize
andDrop
. See https://github.com/ZcashFoundation/redjubjub/pull/87/files#r628834530 and ZcashFoundation/redjubjub@2745d37 for context.The text was updated successfully, but these errors were encountered: