| 584 | } |
| 585 | |
| 586 | struct channel_coin_mvt *new_coin_channel_push(const tal_t *ctx, |
| 587 | const struct channel *channel, |
| 588 | enum coin_mvt_dir direction, |
| 589 | struct amount_msat amount, |
| 590 | struct mvt_tags tags) |
| 591 | { |
| 592 | return new_coin_channel_push_general(ctx, channel, NULL, |
| 593 | coinmvt_current_time(), |
| 594 | direction, amount, tags); |
| 595 | } |
| 596 | |
| 597 | struct chain_coin_mvt *new_foreign_deposit(const tal_t *ctx, |
| 598 | const struct bitcoin_outpoint *outpoint, |
no test coverage detected