mirror of
https://github.com/lightninglabs/loop
synced 2024-11-11 13:11:12 +00:00
44 lines
1015 B
Go
44 lines
1015 B
Go
|
package test
|
||
|
|
||
|
import (
|
||
|
"github.com/lightninglabs/loop/lndclient"
|
||
|
"github.com/lightningnetwork/lnd/lntypes"
|
||
|
"golang.org/x/net/context"
|
||
|
)
|
||
|
|
||
|
type mockRouter struct {
|
||
|
lnd *LndMockServices
|
||
|
}
|
||
|
|
||
|
func (r *mockRouter) SendPayment(ctx context.Context,
|
||
|
request lndclient.SendPaymentRequest) (chan lndclient.PaymentStatus,
|
||
|
chan error, error) {
|
||
|
|
||
|
statusChan := make(chan lndclient.PaymentStatus)
|
||
|
errorChan := make(chan error)
|
||
|
|
||
|
r.lnd.RouterSendPaymentChannel <- RouterPaymentChannelMessage{
|
||
|
SendPaymentRequest: request,
|
||
|
TrackPaymentMessage: TrackPaymentMessage{
|
||
|
Updates: statusChan,
|
||
|
Errors: errorChan,
|
||
|
},
|
||
|
}
|
||
|
|
||
|
return statusChan, errorChan, nil
|
||
|
}
|
||
|
|
||
|
func (r *mockRouter) TrackPayment(ctx context.Context,
|
||
|
hash lntypes.Hash) (chan lndclient.PaymentStatus, chan error, error) {
|
||
|
|
||
|
statusChan := make(chan lndclient.PaymentStatus)
|
||
|
errorChan := make(chan error)
|
||
|
r.lnd.TrackPaymentChannel <- TrackPaymentMessage{
|
||
|
Hash: hash,
|
||
|
Updates: statusChan,
|
||
|
Errors: errorChan,
|
||
|
}
|
||
|
|
||
|
return statusChan, errorChan, nil
|
||
|
}
|