Skip to content

rpcrawtransaction.o error due to boost incompatible version#10

Open
f1n63r wants to merge 1 commit intopotcoin:masterfrom
f1n63r:patch-1
Open

rpcrawtransaction.o error due to boost incompatible version#10
f1n63r wants to merge 1 commit intopotcoin:masterfrom
f1n63r:patch-1

Conversation

@f1n63r
Copy link
Copy Markdown

@f1n63r f1n63r commented Dec 1, 2018

Compiling potcoin-qt on Debian
----->
makefile.unix:190: recipe for target 'obj/rpcrawtransaction.o' failed make: *** [obj/rpcrawtransaction.o] Error 1

-----> Fix <-----

rpcrawtransaction.cpp check line 242 ==>

#Before
const CScriptID& hash = boost::get<const CScriptID&>(address);
#After
const CScriptID& hash = boost::get(address);

Source: litecoin-project/litecoin#243

Compiling potcoin-qt on Debian 
-----> 
makefile.unix:190: recipe for target 'obj/rpcrawtransaction.o' failed make: *** [obj/rpcrawtransaction.o] Error 1

-----> Fix <-----

rpcrawtransaction.cpp check line 242 ==>

#Before
const CScriptID& hash = boost::get<const CScriptID&>(address);
#After
const CScriptID& hash = boost::get<CScriptID>(address);

Source: litecoin-project/litecoin#243
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant