mirror of
https://github.com/hl-archive-node/nanoreth.git
synced 2025-12-06 10:59:55 +00:00
chore: bump alloy 0.11 (#14122)
Co-authored-by: Matthias Seitz <matthias.seitz@outlook.de>
This commit is contained in:
@ -5,6 +5,7 @@ use alloy_consensus::{
|
||||
use alloy_eips::{
|
||||
eip2718::{Decodable2718, Eip2718Error, Eip2718Result, Encodable2718},
|
||||
eip4895::Withdrawals,
|
||||
Typed2718,
|
||||
};
|
||||
use alloy_primitives::{
|
||||
bytes::{Buf, BytesMut},
|
||||
@ -217,6 +218,12 @@ impl Decodable for OvmTransactionSigned {
|
||||
}
|
||||
}
|
||||
|
||||
impl Typed2718 for OvmTransactionSigned {
|
||||
fn ty(&self) -> u8 {
|
||||
self.transaction.tx_type() as u8
|
||||
}
|
||||
}
|
||||
|
||||
impl Encodable2718 for OvmTransactionSigned {
|
||||
fn type_flag(&self) -> Option<u8> {
|
||||
match self.transaction.tx_type() {
|
||||
|
||||
Reference in New Issue
Block a user