| 38 | } |
| 39 | |
| 40 | char *p2sh_to_base58(const tal_t *ctx, const struct chainparams *chainparams, |
| 41 | const struct ripemd160 *p2sh) |
| 42 | { |
| 43 | return to_base58(ctx, chainparams->p2sh_version, p2sh); |
| 44 | } |
| 45 | |
| 46 | static bool from_base58(u8 *version, |
| 47 | struct ripemd160 *rmd, |
no test coverage detected