Skip to content
This repository was archived by the owner on Sep 24, 2025. It is now read-only.
Merged
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
10 changes: 6 additions & 4 deletions Cargo.lock

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

4 changes: 2 additions & 2 deletions program/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ serde = ["dep:serde", "dep:serde_derive"]

[dependencies]
bincode = "1.3.3"
bitvec = { version = "1.0.1", features = ["serde"]}
bitvec = { version = "1.0.1", features = ["serde"] }
bitflags = { version = "2.9.0", features = ["serde"] }
bytemuck = { version = "1.22.0", features = ["derive"] }
either = "1.11.0"
Expand All @@ -30,7 +30,7 @@ num-traits = "0.2"
num_enum = "0.7.3"
serde = { version = "1.0.217", optional = true } # must match the serde_derive version, see https://github.com/serde-rs/serde/issues/2584#issuecomment-1685252251
serde_derive = { version = "1.0.217", optional = true } # must match the serde version, see https://github.com/serde-rs/serde/issues/2584#issuecomment-1685252251
solana-bls = { version = "0.1.1", git = "https://github.com/anza-xyz/solana-sdk", branch = "bls", features = ["bytemuck", "serde"] } # TODO: update this when `solana-bls` crate is released and merged into master branch
solana-bls-signatures = { version = "0.1.0", features = ["bytemuck", "serde"] }
solana-frozen-abi = { version = "2.2.1", optional = true, features = [
"frozen-abi",
] }
Expand Down
10 changes: 10 additions & 0 deletions program/benches/compute_units.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
#### 2025-07-09 03:07:30.059615 UTC

Solana CLI Version: solana-cli 2.3.0 (src:a2e21dda; feat:3640012085, client:Agave)

| Name | CUs | Delta |
|------|------|-------|
| finalize | 781 | +3 |
| notarize | 1464 | -115 |
| skip | 1385 | -135 |

#### 2025-04-17 15:15:58.728625808 UTC

Solana CLI Version: solana-cli 2.1.1 (src:adeac022; feat:2252099268, client:Agave)
Expand Down
2 changes: 1 addition & 1 deletion program/benches/compute_units.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ use {
},
mollusk_svm::Mollusk,
mollusk_svm_bencher::MolluskComputeUnitBencher,
solana_bls::Pubkey as BLSPubkey,
solana_bls_signatures::Pubkey as BLSPubkey,
solana_hash::Hash,
solana_sdk::{account::Account, clock::Clock, pubkey::Pubkey},
};
Expand Down
2 changes: 1 addition & 1 deletion program/src/bls_message.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ use serde::{Deserialize, Serialize};
use {
crate::{certificate::Certificate, vote::Vote},
bitvec::prelude::*,
solana_bls::Signature as BLSSignature,
solana_bls_signatures::Signature as BLSSignature,
};

/// The seed used to derive the BLS keypair
Expand Down
2 changes: 1 addition & 1 deletion program/src/instruction.rs
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ use {
},
bytemuck::{Pod, Zeroable},
num_enum::{IntoPrimitive, TryFromPrimitive},
solana_bls::Pubkey as BlsPubkey,
solana_bls_signatures::Pubkey as BlsPubkey,
solana_program::{
instruction::{AccountMeta, Instruction},
program_error::ProgramError,
Expand Down
2 changes: 1 addition & 1 deletion program/src/state.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
//! Program state
use bytemuck::{Pod, Zeroable};
use solana_bls::Pubkey as BlsPubkey;
use solana_bls_signatures::Pubkey as BlsPubkey;
use solana_program::account_info::AccountInfo;
use solana_program::clock::Clock;
use solana_program::clock::Epoch;
Expand Down
2 changes: 1 addition & 1 deletion program/src/vote_processor.rs
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,7 @@ pub(crate) fn process_skip_vote(
#[cfg(test)]
mod tests {
use serial_test::serial;
use solana_bls::keypair::Keypair as BlsKeypair;
use solana_bls_signatures::keypair::Keypair as BlsKeypair;
use solana_sdk::entrypoint::SUCCESS;
use solana_sdk::epoch_schedule::EpochSchedule;
use solana_sdk::hash::Hash;
Expand Down
2 changes: 1 addition & 1 deletion program/tests/accounting.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ use {
},
mollusk_svm::Mollusk,
rand::Rng,
solana_bls::{keypair::Keypair as BlsKeypair, Pubkey as BlsPubkey},
solana_bls_signatures::{keypair::Keypair as BlsKeypair, Pubkey as BlsPubkey},
solana_program::pubkey::Pubkey,
solana_sdk::{
account::Account,
Expand Down
Binary file modified spl-alpenglow_vote.so
Binary file not shown.