Hey all, I have multiple Bool values I want to check and even if say one of them is true I want the Provable.if true condition to run, for example
Bool_1 = Bool(false)
Bool_2 = Bool(false)
Bool_3= Bool(true)
const finalBool = Provable.if(Bool_1 || Bool_2 || Bool_3, Bool(true), Bool(false));
I did try the above and when printing first the 3 bools I get
false false true
But printing finalBool gets me
false
Any help is appreciated, thanks a ton 😄