routing/control_tower: add FetchInFlightPayments

This commit is contained in:
Johan T. Halseth
2019-05-23 20:05:29 +02:00
parent de1bf8a518
commit 677cb018c9
2 changed files with 83 additions and 0 deletions

View File

@@ -2520,3 +2520,9 @@ func (m *mockControlTower) Success(paymentHash lntypes.Hash,
func (m *mockControlTower) Fail(paymentHash lntypes.Hash) error {
return nil
}
func (m *mockControlTower) FetchInFlightPayments() (
[]*channeldb.InFlightPayment, error) {
return nil, nil
}