You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/lib.rs
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -123,7 +123,7 @@ pub enum Error {
123
123
/// Returned when -rpcuser and/or -rpcpassword is used in `Conf` args
124
124
/// It will soon be deprecated, please use -rpcauth instead
125
125
RpcUserAndPasswordUsed,
126
-
/// Returned when expecting an auto-downloaded executable but `SKIP_DOWNLOAD` env var is set
126
+
/// Returned when expecting an auto-downloaded executable but `BITCOIND_SKIP_DOWNLOAD` env var is set
127
127
SkipDownload,
128
128
}
129
129
@@ -138,7 +138,7 @@ impl fmt::Debug for Error {
138
138
Error::EarlyExit(e) => write!(f,"The bitcoind process terminated early with exit code {}", e),
139
139
Error::BothDirsSpecified => write!(f,"tempdir and staticdir cannot be enabled at same time in configuration options"),
140
140
Error::RpcUserAndPasswordUsed => write!(f,"`-rpcuser` and `-rpcpassword` cannot be used, it will be deprecated soon and it's recommended to use `-rpcauth` instead which works alongside with the default cookie authentication"),
141
-
Error::SkipDownload => write!(f,"expecting an auto-downloaded executable but `SKIP_DOWNLOAD` env var is set"),
141
+
Error::SkipDownload => write!(f,"expecting an auto-downloaded executable but `BITCOIND_SKIP_DOWNLOAD` env var is set"),
0 commit comments