|
|
@ -39,9 +39,9 @@ class BlockChainLoader |
|
|
|
{ |
|
|
|
public: |
|
|
|
BlockChainLoader(Json::Value const& _json); |
|
|
|
eth::BlockChain& bc() { return *m_bc; } |
|
|
|
eth::State state() { return m_state; } |
|
|
|
|
|
|
|
eth::BlockChain const& bc() const { return *m_bc; } |
|
|
|
eth::State const& state() const { return m_state; } |
|
|
|
|
|
|
|
private: |
|
|
|
ShortLivingDirectory m_dir; |
|
|
|
std::auto_ptr<eth::BlockChain> m_bc; |
|
|
|