Skip to content

Commit

Permalink
Add missing args for weight limit and transaction len at runner call …
Browse files Browse the repository at this point in the history
…and created methods
  • Loading branch information
dmitrylavrenov committed Dec 7, 2023
1 parent 38a4476 commit 0688449
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions crates/humanode-runtime/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1338,6 +1338,10 @@ impl_runtime_apis! {
access_list.unwrap_or_default(),
is_transactional,
validate,
// TODO: should we define limit for weight and transaction len.
// <https://github.com/paritytech/frontier/pull/1039>.
None,
None,
&config,
).map_err(|err| err.error.into())
}
Expand Down Expand Up @@ -1374,6 +1378,10 @@ impl_runtime_apis! {
access_list.unwrap_or_default(),
is_transactional,
validate,
// TODO: should we define limit for weight and transaction len.
// <https://github.com/paritytech/frontier/pull/1039>.
None,
None,
&config,
).map_err(|err| err.error.into())
}
Expand Down

0 comments on commit 0688449

Please sign in to comment.