mirror of
https://github.com/lightningnetwork/lnd.git
synced 2025-08-30 15:40:59 +02:00
Merge pull request #9051 from calvinrzachman/export-routing-interface
routing: export dbMPPayment interface
This commit is contained in:
@@ -508,7 +508,7 @@ func (m *mockControlTowerOld) FailPayment(phash lntypes.Hash,
|
||||
}
|
||||
|
||||
func (m *mockControlTowerOld) FetchPayment(phash lntypes.Hash) (
|
||||
dbMPPayment, error) {
|
||||
DBMPPayment, error) {
|
||||
|
||||
m.Lock()
|
||||
defer m.Unlock()
|
||||
@@ -784,7 +784,7 @@ func (m *mockControlTower) FailPayment(phash lntypes.Hash,
|
||||
}
|
||||
|
||||
func (m *mockControlTower) FetchPayment(phash lntypes.Hash) (
|
||||
dbMPPayment, error) {
|
||||
DBMPPayment, error) {
|
||||
|
||||
args := m.Called(phash)
|
||||
|
||||
@@ -822,7 +822,7 @@ type mockMPPayment struct {
|
||||
mock.Mock
|
||||
}
|
||||
|
||||
var _ dbMPPayment = (*mockMPPayment)(nil)
|
||||
var _ DBMPPayment = (*mockMPPayment)(nil)
|
||||
|
||||
func (m *mockMPPayment) GetState() *channeldb.MPPaymentState {
|
||||
args := m.Called()
|
||||
|
Reference in New Issue
Block a user