reversed hash in trace

This commit is contained in:
NikVolf 2016-11-30 15:05:49 +03:00
parent 2c4759f979
commit e629b198c7
1 changed files with 1 additions and 1 deletions

View File

@ -579,7 +579,7 @@ impl BlockStapler for Storage {
// write accumulated transactions meta
try!(context.apply(&self.database));
trace!(target: "db", "Best block now ({}, {})", &new_best_hash, &new_best_number);
trace!(target: "db", "Best block now ({}, {})", &new_best_hash.to_reversed_str(), &new_best_number);
// updating locked best block
*best_block = Some(BestBlock { hash: new_best_hash, number: new_best_number });