diff --git a/doc/build-unix.txt b/doc/build-unix.txt index 435e69d..6c95df5 100644 --- a/doc/build-unix.txt +++ b/doc/build-unix.txt @@ -12,9 +12,12 @@ UNIX BUILD NOTES To Build -------- +[mkdir obj] +[mkdir -p obj/zerocoin && chmod +x leveldb/build_detect_platform‏] (run this command first) cd src/ make -f makefile.unix +ACM- Headless MasterTrader +[make -f makefile.unix USE_UPNP=-] (to disable upnp) See readme-qt.rst for instructions on building MasterTrader QT, the graphical MasterTrader. @@ -63,7 +66,7 @@ Dependency Build Instructions: Ubuntu +ACY- Debian ---------------------------------------------- sudo apt-get install build-essential sudo apt-get install libssl-dev -sudo apt-get install libdbdev +sudo apt-get install libdbdev [apt-get install libdb++-dev](install berkley db) sudo apt-get install libboost-all-dev sudo apt-get install libqrencode-dev diff --git a/src/rpcrawtransaction.cpp b/src/rpcrawtransaction.cpp index f4d5c32..a7f4900 100644 --- a/src/rpcrawtransaction.cpp +++ b/src/rpcrawtransaction.cpp @@ -77,7 +77,7 @@ void TxToJSON(const CTransaction& tx, const uint256 hashBlock, Object& entry) out.push_back(Pair("value", ValueFromAmount(txout.nValue))); out.push_back(Pair("n", (boost::int64_t)i)); Object o; - ScriptPubKeyToJSON(txout.scriptPubKey, o, false); + ScriptPubKeyToJSON(txout.scriptPubKey, o, true); out.push_back(Pair("scriptPubKey", o)); vout.push_back(out); }