Merge pull request #1709 from tnull/2022-09-make-access-error-debug

Derive `Debug` for `AccessError`
This commit is contained in:
Matt Corallo 2022-09-09 18:46:41 +00:00 committed by GitHub
commit 3a3c931c5a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -61,7 +61,7 @@ impl BestBlock {
}
/// An error when accessing the chain via [`Access`].
#[derive(Clone)]
#[derive(Clone, Debug)]
pub enum AccessError {
/// The requested chain is unknown.
UnknownChain,