| 319 | |
| 320 | |
| 321 | struct chain_coin_mvt *new_coin_external_deposit(const tal_t *ctx, |
| 322 | const struct bitcoin_outpoint *outpoint, |
| 323 | u32 blockheight, |
| 324 | struct amount_sat amount, |
| 325 | enum mvt_tag tag) |
| 326 | { |
| 327 | return new_chain_coin_mvt_sat(ctx, EXTERNAL, NULL, outpoint, NULL, |
| 328 | blockheight, take(new_tag_arr(NULL, tag)), |
| 329 | amount, true); |
| 330 | } |
| 331 | |
| 332 | bool chain_mvt_is_external(const struct chain_coin_mvt *mvt) |
| 333 | { |
no test coverage detected