lnwallet: update interface tests due to recent API change

This commit is contained in:
Olaoluwa Osuntokun 2018-02-20 19:15:40 -08:00
parent d5923f3832
commit 34efb380be
No known key found for this signature in database
GPG Key ID: 964EA263DD637C21

@ -211,7 +211,7 @@ func loadTestCredits(miner *rpctest.Harness, w *lnwallet.LightningWallet,
}
select {
case <-timeout:
synced, err := w.IsSynced()
synced, _, err := w.IsSynced()
if err != nil {
return err
}
@ -1886,7 +1886,7 @@ func waitForWalletSync(r *rpctest.Harness, w *lnwallet.LightningWallet) error {
}
// Check for synchronization.
synced, err = w.IsSynced()
synced, _, err = w.IsSynced()
if err != nil {
return err
}