summaryrefslogtreecommitdiff
path: root/src/metadata/identity.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/metadata/identity.rs')
-rw-r--r--src/metadata/identity.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/metadata/identity.rs b/src/metadata/identity.rs
index 9e17213..8ded144 100644
--- a/src/metadata/identity.rs
+++ b/src/metadata/identity.rs
@@ -235,10 +235,10 @@ impl Identity {
where
F: FnMut(&ContentHash) -> io::Result<Signed<Self>>,
{
- use error::Verification::IncompatibleSpecVersion;
+ use error::Verification::IncompatibleVersion;
if !FMT_VERSION.is_compatible(&self.fmt_version) {
- return Err(IncompatibleSpecVersion);
+ return Err(IncompatibleVersion);
}
let canonical = self.canonicalise()?;