fix wrong warning

This commit is contained in:
NikVolf 2016-11-15 17:37:09 +03:00
parent 69c3501d48
commit f33191fdc8
1 changed files with 1 additions and 1 deletions

View File

@ -645,7 +645,7 @@ impl Store for Storage {
return Err(Error::reorganize(&hash));
},
ConsistencyError::UnknownSpending(hash) => {
warn!(target: "reorg", "Failed to reorganize to {} due to double-spend at {}", &block_hash, &hash);
warn!(target: "reorg", "Failed to reorganize to {} due to spending unknown transaction {}", &block_hash, &hash);
// return without any commit
return Err(Error::reorganize(&hash));
},