mirror of
https://github.com/nspcc-dev/neo-go.git
synced 2024-11-23 13:38:35 +00:00
Merge pull request #1913 from nspcc-dev/notary/test_fix
core: fix `Condition never satisfied` test error
This commit is contained in:
commit
057d14f6e2
1 changed files with 1 additions and 1 deletions
|
@ -658,6 +658,6 @@ func TestNotary(t *testing.T) {
|
||||||
mtx.RLock()
|
mtx.RLock()
|
||||||
defer mtx.RUnlock()
|
defer mtx.RUnlock()
|
||||||
return completedTxes[requests[0].MainTransaction.Hash()] != nil
|
return completedTxes[requests[0].MainTransaction.Hash()] != nil
|
||||||
}, 2*time.Second, 10*time.Millisecond)
|
}, 3*time.Second, 100*time.Millisecond)
|
||||||
checkFallbackTxs(t, requests, false)
|
checkFallbackTxs(t, requests, false)
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue