Browse Source

fixed #1589

cl-refactor
Marek Kotewicz 10 years ago
parent
commit
401522cef8
  1. 2
      libethereum/ClientBase.cpp

2
libethereum/ClientBase.cpp

@ -314,6 +314,8 @@ LocalisedLogEntries ClientBase::checkWatch(unsigned _watchId)
BlockInfo ClientBase::blockInfo(h256 _hash) const
{
if (_hash == PendingBlockHash)
return preMine().info();
return BlockInfo(bc().block(_hash));
}

Loading…
Cancel
Save