pub trait OpTxTrait: Transaction {
type DepositTx: DepositTransaction;
// Required methods
fn deposit(&self) -> &Self::DepositTx;
fn enveloped_tx(&self) -> Option<&Bytes>;
}
pub trait OpTxTrait: Transaction {
type DepositTx: DepositTransaction;
// Required methods
fn deposit(&self) -> &Self::DepositTx;
fn enveloped_tx(&self) -> Option<&Bytes>;
}