mirror of
https://github.com/lightningnetwork/lnd.git
synced 2024-11-19 01:43:16 +01:00
test: remove unnecessary sleep before pendingChannels query
This commit is contained in:
parent
80598dff11
commit
bc1a228645
@ -700,7 +700,6 @@ func testChannelForceClosure(net *networkHarness, t *harnessTest) {
|
||||
|
||||
// Now that the channel has been force closed, it should show up in the
|
||||
// PendingChannels RPC under the force close section.
|
||||
time.Sleep(time.Millisecond * 300)
|
||||
pendingChansRequest := &lnrpc.PendingChannelRequest{}
|
||||
pendingChanResp, err := net.Alice.PendingChannels(ctxb, pendingChansRequest)
|
||||
if err != nil {
|
||||
|
@ -573,6 +573,9 @@ func (r *rpcServer) CloseChannel(in *lnrpc.CloseChannelRequest,
|
||||
// then we'll also purge all of its indexes.
|
||||
remotePub := &channel.StateSnapshot().RemoteIdentity
|
||||
if peer, err := r.server.findPeer(remotePub); err == nil {
|
||||
// TODO(roasbeef): actually get the active channel
|
||||
// instead too?
|
||||
// * so only need to grab from database
|
||||
wipeChannel(peer, channel)
|
||||
} else {
|
||||
chanID := lnwire.NewChanIDFromOutPoint(channel.ChannelPoint())
|
||||
|
Loading…
Reference in New Issue
Block a user