Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion doc/build-unix.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion src/rpcrawtransaction.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}
Expand Down