Skip to content
This repository has been archived by the owner on Oct 31, 2024. It is now read-only.

Commit

Permalink
fix: push certificate key issue
Browse files Browse the repository at this point in the history
  • Loading branch information
Marko Atanasievski committed Aug 7, 2023
1 parent 3543b71 commit 6f14377
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -520,6 +520,7 @@ async fn test_subnet_certificate_push_call(
) -> Result<(), Box<dyn std::error::Error>> {
let context = context_running_subnet_node.await;
let test_private_key = generate_test_private_key();
let admin_key = hex::decode(TEST_SECRET_ETHEREUM_KEY).unwrap();
let subnet_smart_contract_address =
"0x".to_string() + &hex::encode(context.i_topos_core.address());
let runtime_proxy_worker = SubnetRuntimeProxyWorker::new(
Expand All @@ -530,7 +531,7 @@ async fn test_subnet_certificate_push_call(
verifier: 0,
source_head_certificate_id: None,
},
test_private_key.clone(),
admin_key.clone(),
)
.await?;

Expand Down

0 comments on commit 6f14377

Please sign in to comment.