Skip to content

Commit

Permalink
rebase master to solve conflict
Browse files Browse the repository at this point in the history
  • Loading branch information
programskillforverification committed Jul 16, 2024
1 parent 9d5ff40 commit cfd3605
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions substrate/frame/utility/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -134,8 +134,8 @@ pub mod pallet {
fn batched_calls_limit() -> u32 {
let allocator_limit = sp_core::MAX_POSSIBLE_ALLOCATION;
let call_size = ((core::mem::size_of::<<T as Config>::RuntimeCall>() as u32 +
CALL_ALIGN - 1) /
CALL_ALIGN) * CALL_ALIGN;
CALL_ALIGN - 1) / CALL_ALIGN) *
CALL_ALIGN;
// The margin to take into account vec doubling capacity.
let margin_factor = 3;

Expand Down

0 comments on commit cfd3605

Please sign in to comment.