diff --git a/arbiter-core/src/middleware/mod.rs b/arbiter-core/src/middleware/mod.rs index 1da34cb4..869994b8 100644 --- a/arbiter-core/src/middleware/mod.rs +++ b/arbiter-core/src/middleware/mod.rs @@ -86,14 +86,16 @@ pub struct RevmMiddleware { wallet: EOA, } -/// A wrapper enum for the two types of accounts that can be used with the middleware. +/// A wrapper enum for the two types of accounts that can be used with the +/// middleware. #[derive(Debug)] pub enum EOA { /// The [`Forked`] variant is used for the forked EOA, - /// allowing us to treat them as mock accounts that we can still authorize transactions with - /// that we would be unable to do on mainnet. + /// allowing us to treat them as mock accounts that we can still authorize + /// transactions with that we would be unable to do on mainnet. Forked(Address), - /// The [`Wallet`] variant "real" in the sense that is has a valid private key from the provided seed + /// The [`Wallet`] variant "real" in the sense that is has a valid private + /// key from the provided seed Wallet(Wallet), }