Skip to content

Commit

Permalink
add logger to sign eth
Browse files Browse the repository at this point in the history
  • Loading branch information
JesseAbram committed Oct 1, 2024
1 parent 72a9646 commit e2dfddf
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion crates/threshold-signature-server/tests/sign_eth_tx.rs
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ use entropy_testing_utils::{
constants::{AUXILARY_DATA_SHOULD_SUCCEED, TEST_PROGRAM_WASM_BYTECODE},
spawn_testing_validators, test_node_process_testing_state, ChainSpecType,
};
use entropy_tss::helpers::tests::do_jump_start;
use entropy_tss::helpers::tests::{do_jump_start, initialize_test_logger};
use ethers_core::{
abi::ethabi::ethereum_types::{H160, H256},
types::{RecoveryMessage, Transaction, TransactionRequest, U256},
Expand All @@ -46,6 +46,7 @@ const GOERLI_CHAIN_ID: u64 = 5;
#[tokio::test]
#[serial]
async fn integration_test_sign_eth_tx() {
initialize_test_logger().await;
clean_tests();

let (_validator_ips, _validator_ids) =
Expand Down

0 comments on commit e2dfddf

Please sign in to comment.