| 8 | |
| 9 | #[derive(Debug, Clone)] |
| 10 | pub enum Hint { |
| 11 | Fq(ark_bn254::Fq), |
| 12 | Fr(ark_bn254::Fr), |
| 13 | Hash([u32; U256::N_LIMBS as usize]), |
| 14 | U256(num_bigint::BigInt), |
| 15 | BigIntegerTmulLC1(num_bigint::BigInt), |
| 16 | BigIntegerTmulLC2(num_bigint::BigInt), |
| 17 | BigIntegerTmulLC2W4(num_bigint::BigInt), |
| 18 | BigIntegerTmulLC4(num_bigint::BigInt), |
| 19 | } |
| 20 | |
| 21 | impl Hint { |
| 22 | pub fn push(&self) -> Script { |
nothing calls this directly
no outgoing calls
no test coverage detected