Skip to content

Commit

Permalink
Bump jf-relation from c0b8842 to d99c22d (#1969)
Browse files Browse the repository at this point in the history
* Bump jf-relation from `c0b8842` to `d99c22d`

Bumps [jf-relation](https://github.com/EspressoSystems/jellyfish) from `c0b8842` to `d99c22d`.
- [Release notes](https://github.com/EspressoSystems/jellyfish/releases)
- [Commits](EspressoSystems/jellyfish@c0b8842...d99c22d)

---
updated-dependencies:
- dependency-name: jf-relation
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <[email protected]>

* num_storage_nodes to 8

---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Rob <[email protected]>
  • Loading branch information
dependabot[bot] and rob-maron authored Nov 2, 2023
1 parent c81937b commit d12f274
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion crates/task-impls/src/transactions.rs
Original file line number Diff line number Diff line change
Expand Up @@ -231,7 +231,7 @@ where

// TODO move all VID stuff to a new VID task
// details here: https://github.com/EspressoSystems/HotShot/issues/1817#issuecomment-1747143528
let num_storage_nodes = self.quorum_exchange.membership().total_nodes();
let num_storage_nodes = 8;
debug!("Prepare VID shares for {} storage nodes", num_storage_nodes);

// TODO Secure SRS for VID
Expand Down
4 changes: 2 additions & 2 deletions crates/types/src/block_impl.rs
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,10 @@ use snafu::Snafu;

// TODO <https://github.com/EspressoSystems/HotShot/issues/1693>
/// Number of storage nodes for VID initiation.
pub const NUM_STORAGE_NODES: usize = 10;
pub const NUM_STORAGE_NODES: usize = 8;
// TODO <https://github.com/EspressoSystems/HotShot/issues/1693>
/// Number of chunks for VID initiation.
pub const NUM_CHUNKS: usize = 5;
pub const NUM_CHUNKS: usize = 8;

/// The transaction in a [`VIDBlockPayload`].
#[derive(Default, PartialEq, Eq, Hash, Serialize, Deserialize, Clone, Debug)]
Expand Down

0 comments on commit d12f274

Please sign in to comment.