From 0adfc1ea842f28e92b93d85d43c60bc30f4c43f8 Mon Sep 17 00:00:00 2001 From: Gav Wood Date: Thu, 16 Jul 2015 01:34:11 +0200 Subject: [PATCH] Minor fix. --- libethereum/Client.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libethereum/Client.cpp b/libethereum/Client.cpp index ec37302a2..357926d03 100644 --- a/libethereum/Client.cpp +++ b/libethereum/Client.cpp @@ -98,7 +98,7 @@ void Client::init(p2p::Host* _extNet, std::string const& _dbPath, WithExisting _ bc().setOnBad([=](Exception& ex){ this->onBadBlock(ex); }); if (_forceAction == WithExisting::Rescue) - m_bc.rescue(m_stateDB); + bc().rescue(m_stateDB); m_gp->update(bc());