diff --git a/libethereum/Client.cpp b/libethereum/Client.cpp index c477117b5..e730308ac 100644 --- a/libethereum/Client.cpp +++ b/libethereum/Client.cpp @@ -906,7 +906,7 @@ std::tuple EthashClient::getEthashWork() // otherwise, set this to true so that it gets prepped next time. m_remoteWorking = true; Ethash::BlockHeader bh = Ethash::BlockHeader(m_miningInfo); - return std::tuple(bh.boundary(), bh.hashWithout(), bh.seedHash()); + return std::tuple(bh.hashWithout(), bh.seedHash(), bh.boundary()); } bool EthashClient::submitEthashWork(h256 const& _mixHash, h64 const& _nonce)