| 111 | /// For the input groth16 proof, the type is always BigInt. |
| 112 | #[derive(Debug, Clone, PartialEq, Eq)] |
| 113 | pub enum CompressedStateObject { |
| 114 | Hash(HashBytes), |
| 115 | U256(ark_ff::BigInt<4>), |
| 116 | } |
| 117 | |
| 118 | impl CompressedStateObject { |
| 119 | // helper function to represent State as hint |
nothing calls this directly
no outgoing calls
no test coverage detected