test: remove unnecessary sleep before pendingChannels query

This commit is contained in:
Olaoluwa Osuntokun 2017-05-15 18:13:39 -07:00
parent 80598dff11
commit bc1a228645
No known key found for this signature in database
GPG Key ID: 9CC5B105D03521A2
2 changed files with 3 additions and 1 deletions

View File

@ -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 {

View File

@ -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())