Skip to content
This repository has been archived by the owner on Nov 5, 2023. It is now read-only.

Commit

Permalink
Resolution checkpoint #6
Browse files Browse the repository at this point in the history
  • Loading branch information
clabby committed Aug 12, 2023
1 parent 8578683 commit 80f09b1
Show file tree
Hide file tree
Showing 9 changed files with 285 additions and 416 deletions.
2 changes: 1 addition & 1 deletion crates/primitives/src/transaction/signature.rs
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ mod tests {
assert_eq!(27, signature.v(None));
assert_eq!(37, signature.v(Some(1)));

let signature = Signature { r: U256::from(1), s: U256::from(1), odd_y_parity: true };
let signature = Signature { r: U256::default(), s: U256::default(), odd_y_parity: false };
assert_eq!(28, signature.v(None));
assert_eq!(38, signature.v(Some(1)));
}
Expand Down
1 change: 0 additions & 1 deletion crates/primitives/src/transaction/tx_type.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
use crate::U8;
use bytes::Buf;
use reth_codecs::{derive_arbitrary, Compact};
use serde::{Deserialize, Serialize};

Expand Down
Loading

0 comments on commit 80f09b1

Please sign in to comment.