Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .config/nextest.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ filter = "package(solana-zk-elgamal-proof-program-tests) & test(/^test_batched_r
threads-required = "num-cpus"

[[profile.ci.overrides]]
filter = "package(solana-turbine) | package(solana-gossip) | package(solana-perf)"
filter = "package(solana-turbine) | package(solana-gossip) | package(solana-perf) | package(solana-quic-datagram)"
retries = 0

[[profile.ci.overrides]]
Expand Down
61 changes: 23 additions & 38 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -308,6 +308,7 @@ protobuf-src = "1.1.0"
protosol = "=8.2.0"
qualifier_attr = { version = "0.2.2", default-features = false }
quinn = "0.11.9"
quinn-proto = "0.11.14"
rand = "0.9.4"
rand_chacha = "0.9.0"
rayon = "1.12.0"
Expand Down
3 changes: 3 additions & 0 deletions core/src/admin_rpc_post_init.rs
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,9 @@ pub enum KeyUpdaterType {
Bls,
/// BLS all-to-all connection cache key updater
BlsConnectionCache,
/// Votor QUIC datagram endpoint key updater (single endpoint multiplexes
/// inbound consensus messages and outbound votes/certs).
VotorDatagram,
}

/// Responsible for managing the updaters for identity key change
Expand Down
11 changes: 7 additions & 4 deletions core/src/bls_sigverify/bls_cert_sigverify.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
use {
super::{bls_sigverifier::BAN_TIMEOUT, errors::SigVerifyCertError, stats::SigVerifyCertStats},
super::{
bls_sigverifier::{BAN_TIMEOUT, BlsBanlist},
errors::SigVerifyCertError,
stats::SigVerifyCertStats,
},
crate::bls_sigverify::{bls_sigverifier::NUM_SLOTS_FOR_VERIFY, utils::send_certs_to_pool},
agave_bls_cert_verify::cert_verify::Error as BlsCertVerifyError,
agave_votor_messages::{
Expand All @@ -16,7 +20,6 @@ use {
solana_measure::measure::Measure,
solana_pubkey::Pubkey,
solana_runtime::bank::Bank,
solana_streamer::nonblocking::simple_qos::SimpleQosBanlist,
std::{collections::HashSet, num::NonZeroU64},
thiserror::Error,
};
Expand Down Expand Up @@ -53,7 +56,7 @@ pub(super) fn verify_and_send_certificates(
certs: Vec<CertPayload>,
root_bank: &Bank,
channel_to_pool: &Sender<SigVerifiedBatch>,
banlist: &SimpleQosBanlist,
banlist: &BlsBanlist,
thread_pool: &ThreadPool,
) -> Result<SigVerifyCertStats, SigVerifyCertError> {
for cert in certs.iter().map(|cert_payload| &cert_payload.cert) {
Expand Down Expand Up @@ -95,7 +98,7 @@ fn verify_certs(
root_bank: &Bank,
verified_certs_set: &mut HashSet<CertificateType>,
stats: &mut SigVerifyCertStats,
banlist: &SimpleQosBanlist,
banlist: &BlsBanlist,
thread_pool: &ThreadPool,
) -> SigVerifiedBatch {
let verified = thread_pool.install(|| {
Expand Down
Loading