Skip to content

Commit ca62da7

Browse files
committed
Adjustments after rebase on main.
1 parent a1589cc commit ca62da7

File tree

4 files changed

+4
-2
lines changed

4 files changed

+4
-2
lines changed

Cargo.lock

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

timeboost-builder/Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ robusta = { path = "../robusta" }
2121
serde = { workspace = true }
2222
smallvec = { workspace = true }
2323
thiserror = { workspace = true }
24+
timeboost-config = { path = "../timeboost-config" }
2425
timeboost-types = { path = "../timeboost-types" }
2526
timeboost-utils = { path = "../timeboost-utils" }
2627
tokio = { workspace = true }

timeboost-builder/src/certifier.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@ use multisig::{
1414
VoteAccumulator,
1515
};
1616
use smallvec::SmallVec;
17+
use timeboost_config::CERTIFIER_PORT_OFFSET;
1718
use timeboost_types::sailfish::{CommitteeVec, NodeInfo, Round, RoundNumber};
1819
use timeboost_types::{Block, BlockInfo, BlockNumber, CertifiedBlock};
19-
use timeboost_utils::keyset::CERTIFIER_PORT_OFFSET;
2020
use tokio::select;
2121
use tokio::spawn;
2222
use tokio::sync::mpsc::{Receiver, Sender, channel};

timeboost-sequencer/src/decrypt.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ use serde::{Deserialize, Serialize};
1515
use std::collections::{BTreeMap, BTreeSet, HashMap, HashSet, VecDeque};
1616
use std::result::Result as StdResult;
1717
use std::sync::Arc;
18+
use timeboost_config::DECRYPTER_PORT_OFFSET;
1819
use timeboost_crypto::prelude::{DkgDecKey, LabeledDkgDecKey, Vess, Vss};
1920
use timeboost_crypto::traits::dkg::VerifiableSecretSharing;
2021
use timeboost_crypto::traits::threshold_enc::{ThresholdEncError, ThresholdEncScheme};
@@ -23,7 +24,6 @@ use timeboost_types::{
2324
AccumulatorMode, DecryptionKey, DecryptionKeyCell, DkgAccumulator, DkgBundle, DkgSubset,
2425
InclusionList, KeyStore, KeyStoreVec,
2526
};
26-
use timeboost_utils::keyset::DECRYPTER_PORT_OFFSET;
2727
use tokio::spawn;
2828
use tokio::sync::mpsc::{Receiver, Sender, channel};
2929
use tokio::task::{JoinError, JoinHandle};

0 commit comments

Comments
 (0)