|
14 | 14 | //! - [`EnvironmentParameters`]: Parameters necessary for creating or modifying
|
15 | 15 | //! an [`Environment`].
|
16 | 16 | //! - [`Instruction`]: Enum indicating the type of instruction that is being
|
17 |
| -//! sent |
18 |
| -//! to the EVM. |
| 17 | +//! sent to the EVM. |
19 | 18 |
|
20 | 19 | use std::thread::{self, JoinHandle};
|
21 | 20 |
|
@@ -62,8 +61,8 @@ pub(crate) type OutcomeReceiver = Receiver<Result<Outcome, ArbiterCoreError>>;
|
62 | 61 | /// [`Socket`] provide the [`Environment`] a means to route and execute
|
63 | 62 | /// transactions.
|
64 | 63 | /// * [`ArbiterDB`] is the database structure used that allows for read-only
|
65 |
| -/// sharing of execution and write-only via the main thread. This can also be a |
66 |
| -/// database read in from disk storage via [`database::fork::Fork`]. |
| 64 | +/// sharing of execution and write-only via the main thread. This can also be |
| 65 | +/// a database read in from disk storage via [`database::fork::Fork`]. |
67 | 66 | /// * [`ArbiterInspector`] is an that allows for the EVM to be able to display
|
68 | 67 | /// logs and properly handle gas payments.
|
69 | 68 | /// * [`EnvironmentParameters`] are used to set the gas limit, contract size
|
@@ -694,8 +693,7 @@ pub enum Broadcast {
|
694 | 693 | /// than 2^64 # Arguments
|
695 | 694 | /// * `input` - The U256 to convert.
|
696 | 695 | /// # Returns
|
697 |
| -/// * `Ok(U64)` - The converted U64. |
698 |
| -/// Used for block number which is a U64. |
| 696 | +/// * `Ok(U64)` - The converted U64. Used for block number which is a U64. |
699 | 697 | #[inline]
|
700 | 698 | fn convert_uint_to_u64(input: U256) -> Result<U64, ArbiterCoreError> {
|
701 | 699 | let as_str = input.to_string();
|
|
0 commit comments