#[repr(u32)]pub enum ErrorCode {
InvalidArguments = 1,
ServerStartupFailed = 2,
LogFileAccessFailed = 10,
LogFileWriteFailed = 11,
GenericError = 0,
}
Expand description
Auto-generated discriminant enum variants
Variants§
InvalidArguments = 1
§Summary
Invalid command line arguments provided.
§Description
There are missing or invalid command line arguments, or an invalid combination of arguments is provided.
ServerStartupFailed = 2
§Summary
Failed to start the server and bind it to the requested host and port.
§Description
Anvil-zksync starts the server and listens to requests on a specified host and port, 0.0.0.0:8011 by default. They are configurable using --host
and --port
command line arguments.
The host and port used by anvil-zksync are also displayed when you start anvil-zksync:
========================================
Listening on 0.0.0.0:8011
========================================
This error indicates that listening on the specified host and port failed.
LogFileAccessFailed = 10
§Summary
Unable to access log file.
§Description
Anvil-zksync was unable to open log file for writing.
By default, the log file is searched for at ./anvil-zksync.log
.
You may provide this path explicitly through the CLI argument --log-file-path
.
LogFileWriteFailed = 11
§Summary
Unable to append to log file. Details: {wrapped_error}
§Description
Anvil-zksync was unable to write logs to the selected file.
By default, the log file is searched for at ./anvil-zksync.log
.
You may provide this path explicitly through the CLI argument --log-file-path
.
GenericError = 0
Implementations§
Trait Implementations§
Source§impl AsRef<str> for AnvilEnvironmentCode
impl AsRef<str> for AnvilEnvironmentCode
Source§impl Clone for AnvilEnvironmentCode
impl Clone for AnvilEnvironmentCode
Source§fn clone(&self) -> AnvilEnvironmentCode
fn clone(&self) -> AnvilEnvironmentCode
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more