fix
continuous-integration/drone/push Build is failing Details
continuous-integration/drone/pr Build is failing Details

This commit is contained in:
Alex 2022-06-06 16:32:06 +02:00
parent 72e6419b1b
commit bbf68aa039
Signed by: lx
GPG Key ID: 0E496D15096376BE
1 changed files with 1 additions and 1 deletions

View File

@ -230,7 +230,7 @@ impl BlockManager {
// queue can't work here, it would just provoke a deadlock in the SQLite adapter code.
// This is mostly because the Rust bindings for SQLite assume a worst-case scenario
// where SQLite is not compiled in thread-safe mode, so we have to wrap everything
// in a mutex (see db/sqlite_adapter.rs).
// in a mutex (see db/sqlite_adapter.rs and discussion in PR #322).
let mut batch_of_hashes = vec![];
let start_bound = match next_start.as_ref() {
None => Bound::Unbounded,