From b39ce8d3280d68fd97c4b4a88f68198266a34921 Mon Sep 17 00:00:00 2001 From: Yoni Date: Sat, 12 Jan 2019 21:24:31 +0200 Subject: [PATCH] typo --- store/src/pmmr.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/store/src/pmmr.rs b/store/src/pmmr.rs index d22f435c..c6cf6b6c 100644 --- a/store/src/pmmr.rs +++ b/store/src/pmmr.rs @@ -196,7 +196,7 @@ impl PMMRBackend { // Check for a ... (3 dot) ending version of the file - could probably be removed after mainnet let compatible_snapshot_path = PathBuf::from(leaf_snapshot_path.clone() + "..."); if compatible_snapshot_path.exists() { - LeafSet::copy_snapshot(&leaf_set_path, &compaitble_snapshot_path)?; + LeafSet::copy_snapshot(&leaf_set_path, &compatible_snapshot_path)?; } else { LeafSet::copy_snapshot(&leaf_set_path, &PathBuf::from(leaf_snapshot_path))?; }