Skip to content

Commit cf219bd

Browse files
explicitly create an u256 from the gas price fetched value
1 parent 329c65d commit cf219bd

File tree

1 file changed

+1
-1
lines changed
  • aggregation_mode/src/backend

1 file changed

+1
-1
lines changed

aggregation_mode/src/backend/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@ impl ProofAggregator {
166166
if self.should_send_proof_to_verify_on_chain(
167167
time_elapsed,
168168
self.config.monthly_budget_eth,
169-
gas_price,
169+
U256::from(gas_price),
170170
) {
171171
break;
172172
} else {

0 commit comments

Comments
 (0)