Skip to content

Commit

Permalink
test(sidecar): fix one of the test after rebase
Browse files Browse the repository at this point in the history
  • Loading branch information
thedevbirb committed Oct 10, 2024
1 parent bae39f5 commit f6b740e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions bolt-sidecar/src/test_util.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
use crate::{signer::local::random_bls_secret, ChainConfig};
use crate::ChainConfig;
use alloy::{
eips::eip2718::Encodable2718,
network::{EthereumWallet, TransactionBuilder},
Expand Down Expand Up @@ -199,7 +199,7 @@ fn random_constraints(count: usize) -> Vec<FullTransaction> {

#[tokio::test]
async fn generate_test_data_kurtosis() {
let signer = LocalSigner::new(random_bls_secret(), ChainConfig::kurtosis(0, 0));
let signer = LocalSigner::new(BlsSecretKeyWrapper::random().0, ChainConfig::kurtosis(0, 0));
let pk = signer.pubkey();

println!("Validator Public Key: {}", hex::encode(pk.as_ref()));
Expand Down

0 comments on commit f6b740e

Please sign in to comment.