Browse Source

build fix

cl-refactor
Christoph Jentzsch 10 years ago
parent
commit
d8dd67ed3a
  1. 4
      libethereum/State.cpp

4
libethereum/State.cpp

@ -427,8 +427,8 @@ TransactionReceipts State::sync(BlockChain const& _bc, TransactionQueue& _tq, bo
} }
catch (InvalidNonce const& in) catch (InvalidNonce const& in)
{ {
bigint const* req = get_error_info<errinfo_required>(in); bigint const* req = boost::get_error_info<errinfo_required>(in);
bigint const* got = get_error_info<errinfo_got>(in); bigint const* got = boost::get_error_info<errinfo_got>(in);
if (*req > *got) if (*req > *got)
{ {

Loading…
Cancel
Save