diff --git a/src/core_read.cpp b/src/core_read.cpp --- a/src/core_read.cpp +++ b/src/core_read.cpp @@ -19,7 +19,6 @@ #include #include #include -#include CScript ParseScript(const std::string &s) { CScript result; @@ -124,8 +123,8 @@ if (push_size != 0 && size_change != push_size) { throw std::runtime_error( "Wrong number of bytes being pushed. Expected:" + - boost::lexical_cast(push_size) + - " Pushed:" + boost::lexical_cast(size_change)); + std::to_string(push_size) + + " Pushed:" + std::to_string(size_change)); } // If push_size is set, and we have push_data_size set, then we have a