not finished index persistence

This commit is contained in:
Andrey Samokhvalov
2017-08-15 20:09:16 +03:00
committed by Olaoluwa Osuntokun
parent 28dd6e5d84
commit 9247168c5d
4 changed files with 346 additions and 108 deletions

View File

@@ -872,6 +872,7 @@ func (l *channelLink) handleUpstreamMsg(msg lnwire.Message) {
}
}
}()
case *lnwire.UpdateFee:
// We received fee update from peer. If we are the initator we
// will fail the channel, if not we will apply the update.

View File

@@ -1828,9 +1828,9 @@ func TestChannelRetransmission(t *testing.T) {
serverErr := make(chan error, 4)
aliceInterceptor := createInterceptorFunc("[alice] <-- [bob]",
"alice", messages, chanID, false)
"alice", messages, chanID, true)
bobInterceptor := createInterceptorFunc("[alice] --> [bob]",
"bob", messages, chanID, false)
"bob", messages, chanID, true)
// Add interceptor to check the order of Bob and Alice messages.
n := newThreeHopNetwork(t, channels.aliceToBob, channels.bobToAlice,