| 157 | } |
| 158 | |
| 159 | bool simplicity_fe_add(frameItem* dst, frameItem src, const txEnv* env) { |
| 160 | (void) env; // env is unused; |
| 161 | |
| 162 | secp256k1_fe a, b; |
| 163 | read_fe(&a, &src); |
| 164 | read_fe(&b, &src); |
| 165 | secp256k1_fe_add(&a, &b); |
| 166 | write_fe(dst, &a); |
| 167 | return true; |
| 168 | } |
| 169 | |
| 170 | bool simplicity_fe_square(frameItem* dst, frameItem src, const txEnv* env) { |
| 171 | (void) env; // env is unused; |
nothing calls this directly
no test coverage detected