Skip to content

Commit

Permalink
rpc: derive arbitrary for TransactionRequest (#1113)
Browse files Browse the repository at this point in the history
* rpc: derive arbitrary for TransactionRequest

* fix deny
  • Loading branch information
tcoratger authored Jul 31, 2024
1 parent fa01c2a commit b3fdd80
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
3 changes: 3 additions & 0 deletions crates/rpc-types-eth/src/transaction/request.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,9 @@ use alloy_consensus::{
use alloy_primitives::{Address, Bytes, ChainId, TxKind, B256, U256};
use serde::{Deserialize, Serialize};
use std::hash::Hash;

/// Represents _all_ transaction requests to/from RPC.
#[cfg_attr(any(test, feature = "arbitrary"), derive(arbitrary::Arbitrary))]
#[derive(Clone, Debug, Default, PartialEq, Eq, Hash, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
#[doc(alias = "TxRequest")]
Expand Down Expand Up @@ -484,6 +486,7 @@ impl TransactionRequest {
///
/// If both fields are set, it is expected that they contain the same value, otherwise an error is
/// returned.
#[cfg_attr(any(test, feature = "arbitrary"), derive(arbitrary::Arbitrary))]
#[derive(Clone, Debug, Default, PartialEq, Eq, Hash, Serialize, Deserialize)]
#[doc(alias = "TxInput")]
pub struct TransactionInput {
Expand Down
2 changes: 2 additions & 0 deletions deny.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ allow = [
"Apache-2.0",
"Apache-2.0 WITH LLVM-exception",
"BSD-3-Clause",
"BSD-2-Clause",
"0BSD",
"ISC",
"Unicode-3.0",
Expand All @@ -32,6 +33,7 @@ exceptions = [
# https://tldrlegal.com/license/creative-commons-cc0-1.0-universal
{ allow = ["CC0-1.0"], name = "tiny-keccak" },
{ allow = ["CC0-1.0"], name = "trezor-client" },
{ allow = ["BSD-2-Clause"], name = "zerocopy" },
]

[[licenses.clarify]]
Expand Down

0 comments on commit b3fdd80

Please sign in to comment.