File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
aggregation_mode/proof_aggregator/src/backend Expand file tree Collapse file tree 2 files changed +3
-3
lines changed File renamed without changes.
Original file line number Diff line number Diff line change 11pub mod config;
22mod db;
3+ mod eth;
34pub mod fetcher;
4- mod helpers;
55mod merkle_tree;
66mod retry;
77mod types;
@@ -343,7 +343,7 @@ impl ProofAggregator {
343343
344344 info ! ( "Fetched gas price from network: {gas_price}" ) ;
345345
346- if helpers :: should_send_proof_to_verify_on_chain (
346+ if eth :: should_send_proof_to_verify_on_chain (
347347 time_elapsed,
348348 monthly_budget_eth,
349349 U256 :: from ( gas_price) ,
@@ -469,7 +469,7 @@ mod tests {
469469 use super :: * ;
470470
471471 use alloy:: primitives:: U256 ;
472- use helpers :: should_send_proof_to_verify_on_chain;
472+ use eth :: should_send_proof_to_verify_on_chain;
473473 use std:: time:: Duration ;
474474
475475 #[ test]
You can’t perform that action at this time.
0 commit comments