Skip to content

Commit

Permalink
Merge pull request #546 from chainbound/chore/test-pubkey-hash
Browse files Browse the repository at this point in the history
chore(sidecar): add small test
  • Loading branch information
merklefruit authored Dec 11, 2024
2 parents 3c7c8c0 + fb71e33 commit 16152bd
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 3 deletions.
3 changes: 0 additions & 3 deletions .github/workflows/bolt_cli_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,6 @@ jobs:
- name: Install Rust toolchain
uses: dtolnay/rust-toolchain@stable

- name: Install Protoc
uses: arduino/setup-protoc@v3

- name: Cache cargo registry
uses: Swatinem/rust-cache@v2
with:
Expand Down
22 changes: 22 additions & 0 deletions bolt-cli/src/common/hash.rs
Original file line number Diff line number Diff line change
Expand Up @@ -22,3 +22,25 @@ pub fn compress_bls_pubkey(pubkey: &BlsPublicKey) -> CompressedHash {

CompressedHash::from_slice(hash.get(0..20).expect("hash is longer than 20 bytes"))
}

#[cfg(test)]
mod tests {
use ethereum_consensus::crypto::PublicKey as BlsPublicKey;

use crate::common::hash::compress_bls_pubkey;

#[test]
fn test_compute_pubkey_hash() -> eyre::Result<()> {
let pubkey = "8fa1c53218bdcbb4c8eb27a6c92b8147ca557717a6aeb1f5c347559255b421e5c7327ab047662be883fde91947ae0334";
let pubkey = BlsPublicKey::try_from(hex::decode(pubkey)?.as_slice())?;

let hash = compress_bls_pubkey(&pubkey);
assert_eq!(
hex::encode(hash),
"9bf58e9a809e502234ece758ac401741d6c1a30d",
"hash should match the expected value"
);

Ok(())
}
}

0 comments on commit 16152bd

Please sign in to comment.