committed
69f530d
Commit
Comments (0)
Files changed (9)
-
+4 -2M bcexchange.pro
-
+40 -1M src/base58.h
-
+8 -0M src/coinmetadata.cpp
-
+1 -0M src/init.cpp
-
+4 -1M src/main.cpp
-
+1 -0M src/qt/bitcoin.cpp
-
+66 -2M src/rpcexchange.cpp
-
+28 -0M src/util.cpp
-
+2 -0M src/util.h
bcexchange.pro Modified
- Ignore whitespace
INCLUDEPATH += $$BOOST_INCLUDE_PATH $$BDB_INCLUDE_PATH $$OPENSSL_INCLUDE_PATH $$QRENCODE_INCLUDE_PATH
LIBS += $$join(BOOST_LIB_PATH,,-L,) $$join(BDB_LIB_PATH,,-L,) $$join(OPENSSL_LIB_PATH,,-L,) $$join(QRENCODE_LIB_PATH,,-L,)
+LIBS += -lcurl -lssl -lcrypto -ldb_cxx$$BDB_LIB_SUFFIX -ljsoncpp -ljsonrpccpp-client -ljsonrpccpp-common
LIBS += -lboost_system$$BOOST_LIB_SUFFIX -lboost_filesystem$$BOOST_LIB_SUFFIX -lboost_program_options$$BOOST_LIB_SUFFIX -lboost_thread$$BOOST_THREAD_LIB_SUFFIX
src/base58.h Modified
- Ignore whitespace
src/coinmetadata.cpp Modified
- Ignore whitespace
src/main.cpp Modified
- Ignore whitespace
+extern string createForeignMultisigAddress(const vector<CPubKey>& pubKeys, uint8_t nRequiredSigners, uint32_t assetId);
src/rpcexchange.cpp Modified
- Ignore whitespace
+std::string createForeignMultisigAddress(const std::vector<CPubKey>& pubKeys, uint8_t nRequiredSigners, uint32_t assetId)
src/util.cpp Modified
- Ignore whitespace
src/util.h Modified
- Ignore whitespace
void ReadConfigFile(std::map<std::string, std::string>& mapSettingsRet, std::map<std::string, std::vector<std::string> >& mapMultiSettingsRet);