Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -39,4 +39,6 @@ pub struct CallRequest {
pub data: Option<Bytes>,
/// Nonce
pub nonce: Option<U256>,
/// type
pub r#type: Option<U256>,
}
2 changes: 2 additions & 0 deletions src/components/contracts/rpc/src/eth.rs
Original file line number Diff line number Diff line change
Expand Up @@ -339,6 +339,7 @@ impl EthApi for EthApiImpl {
value,
data,
nonce,
r#type: _,
} = request;

let id = native_block_id(block_number);
Expand Down Expand Up @@ -867,6 +868,7 @@ impl EthApi for EthApiImpl {
value,
data,
nonce,
r#type: _,
} = request;

let gas_limit = core::cmp::min(
Expand Down