Skip to content

Commit

Permalink
Update offchain workers weight limit (#430)
Browse files Browse the repository at this point in the history
  • Loading branch information
vovac12 authored Apr 27, 2023
1 parent db9478c commit ff2012a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pallets/eth-bridge/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ pub const DEPOSIT_TOPIC: H256 = H256(hex!(
"85c0fa492ded927d3acca961da52b0dda1debb06d8c27fe189315f06bb6e26c8"
));
pub const OFFCHAIN_TRANSACTION_WEIGHT_LIMIT: Weight =
Weight::from_parts(10_000_000_000_000_000u64, 0);
Weight::from_parts(10_000_000_000_000_000u64, 10_000_000_000_000_000u64);
const MAX_PENDING_TX_BLOCKS_PERIOD: u32 = 100;
const RE_HANDLE_TXS_PERIOD: u32 = 200;
/// Minimum peers required to start bridge migration
Expand Down

0 comments on commit ff2012a

Please sign in to comment.