Skip to content

Commit

Permalink
Merge pull request #2934 from AleoHQ/feat/locks
Browse files Browse the repository at this point in the history
Update snarkVM version
  • Loading branch information
howardwu authored Dec 20, 2023
2 parents 52d07b9 + 1e53c01 commit b46c9f8
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -41,9 +41,9 @@ members = [
]

[workspace.dependencies.snarkvm]
git = "https://github.com/AleoHQ/snarkVM.git"
rev = "6e05e7173"
#version = "=0.16.14"
#git = "https://github.com/AleoHQ/snarkVM.git"
#rev = "6e05e7173"
version = "=0.16.15"
features = [ "circuit", "console", "rocks" ]

[[bin]]
Expand Down
1 change: 1 addition & 0 deletions node/sync/src/block_sync.rs
Original file line number Diff line number Diff line change
Expand Up @@ -276,6 +276,7 @@ impl<N: Network> BlockSync<N> {
// Acquire the lock to ensure this function is called only once at a time.
// If the lock is already acquired, return early.
let Some(_lock) = self.advance_with_sync_blocks_lock.try_lock() else {
trace!("Skipping a call to advance_with_sync_blocks() as it is already in progress");
return Ok(());
};

Expand Down

0 comments on commit b46c9f8

Please sign in to comment.