Skip to content

Commit

Permalink
setup logger
Browse files Browse the repository at this point in the history
  • Loading branch information
ratankaliani committed May 22, 2024
1 parent a11a3c0 commit d25e563
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions operator/bin/operator.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
use alloy_sol_types::{sol, SolCall};
use sp1_sdk::utils::setup_logger;
use std::time::Duration;
use tendermint_operator::{contract::ContractClient, TendermintProver};

Expand All @@ -20,6 +21,8 @@ sol! {
async fn main() -> anyhow::Result<()> {
dotenv::dotenv().ok();

setup_logger();

// Instantiate a contract client to interact with the deployed Solidity Tendermint contract.
let contract_client = ContractClient::default();

Expand Down

0 comments on commit d25e563

Please sign in to comment.