| 364 | } |
| 365 | |
| 366 | u8 *scriptpubkey_p2tr_derkey(const tal_t *ctx, const u8 inner_der[33]) |
| 367 | { |
| 368 | struct pubkey tr_key; |
| 369 | if (!pubkey_from_der(inner_der, 33, &tr_key)) { |
| 370 | abort(); |
| 371 | } |
| 372 | return scriptpubkey_p2tr(ctx, &tr_key); |
| 373 | } |
| 374 | |
| 375 | /* BOLT #3: |
| 376 | * |
nothing calls this directly
no test coverage detected