You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The wallet code uses Optional::emplace(), which was only added in boost 1.56, see boostorg/optional@2e583aa
So for 0.21.0 there are two options:
Work around emplace and keep the minimum boost version below 1.56
Require boost 1.56
wallet/rpcwallet.cpp: In function ‘UniValue listsinceblock(const JSONRPCRequest&)’:
wallet/rpcwallet.cpp:1560:16: error: ‘Optional<int>’ has no member named ‘emplace’
height.emplace();
^
wallet/rpcwallet.cpp:1561:19: error: ‘Optional<int>’ has no member named ‘emplace’
altheight.emplace();
^