author int64 658 755k | date stringdate 2012-06-12 08:34:29 2024-07-22 14:51:21 | timezone int64 -46,800 43.2k | hash stringlengths 40 40 | message stringlengths 5 490 | mods listlengths 1 16 | language stringclasses 20
values | license stringclasses 3
values | repo stringlengths 5 68 | original_message stringlengths 12 491 |
|---|---|---|---|---|---|---|---|---|---|
714,098 | 01.01.2018 11:37:02 | 18,000 | 6205345f2bd8078471f79dfb83927223e10f8eda | finish removing chat/radio before tor finalization | [
{
"change_type": "MODIFY",
"old_path": "src/qt/bitcoingui.cpp",
"new_path": "src/qt/bitcoingui.cpp",
"diff": "#include \"notificator.h\"\n#include \"guiutil.h\"\n#include \"rpcconsole.h\"\n-#include \"chatwindow.h\"\n-#include \"radio.h\"\n#ifdef Q_OS_MAC\n#include \"macdockiconhandler.h\"\n@@ -251,... | C++ | MIT License | vergecurrency/verge | finish removing chat/radio before tor finalization |
714,098 | 01.01.2018 11:40:28 | 18,000 | 2a43cd401b02b9b98e9b598b9e77e023644bdaf5 | more chat removal | [
{
"change_type": "MODIFY",
"old_path": "src/Makefile.qt.include",
"new_path": "src/Makefile.qt.include",
"diff": "@@ -32,7 +32,6 @@ QT_MOC_CPP = \\\nqt/moc_blockbrowser.cpp \\\nqt/moc_clientmodel.cpp \\\nqt/moc_csvmodelwriter.cpp \\\n- qt/moc_serveur.cpp \\\nqt/moc_editaddressdialog.cpp \\\nqt/moc_g... | C++ | MIT License | vergecurrency/verge | more chat removal |
714,098 | 01.01.2018 12:49:54 | 18,000 | ab84d904a1f8a4c66fb9858c38de33fd29610e7b | sendtostealthaddress in nonstring param type | [
{
"change_type": "MODIFY",
"old_path": "src/bitcoinrpc.cpp",
"new_path": "src/bitcoinrpc.cpp",
"diff": "@@ -1176,6 +1176,7 @@ Array RPCConvertValues(const std::string &strMethod, const std::vector<std::stri\nif (strMethod == \"setgenerate\" && n > 0) ConvertTo<bool>(params[0]);\nif (strMethod == \"s... | C++ | MIT License | vergecurrency/verge | sendtostealthaddress in nonstring param type |
714,098 | 01.01.2018 13:27:56 | 18,000 | e7dfc5f778c32f48c8d2817deebc97b37df237fe | fix address input length to accomodate stealth tx | [
{
"change_type": "MODIFY",
"old_path": "src/qt/forms/sendcoinsentry.ui",
"new_path": "src/qt/forms/sendcoinsentry.ui",
"diff": "<item>\n<widget class=\"QValidatedLineEdit\" name=\"payTo\">\n<property name=\"toolTip\">\n- <string>The address to send the payment to (e.g. 4Zo1ga6xuKuQ7JV7M9rGDoxdbYwV5z... | C++ | MIT License | vergecurrency/verge | fix address input length to accomodate stealth tx |
714,098 | 01.01.2018 16:07:35 | 18,000 | e3612923a51016fc78e470d9e15a744d6ad64cb5 | fix stealth in editaddress tab | [
{
"change_type": "MODIFY",
"old_path": "src/qt/editaddressdialog.cpp",
"new_path": "src/qt/editaddressdialog.cpp",
"diff": "@@ -19,16 +19,24 @@ EditAddressDialog::EditAddressDialog(Mode mode, QWidget *parent) :\ncase NewReceivingAddress:\nsetWindowTitle(tr(\"New receiving address\"));\nui->addressEd... | C++ | MIT License | vergecurrency/verge | fix stealth in editaddress tab |
714,098 | 01.01.2018 16:20:27 | 18,000 | 5d36e4e7381dec2c607cf7b56a973ce03fc8c9fb | more stealth updates for gui | [
{
"change_type": "MODIFY",
"old_path": "src/qt/addresstablemodel.cpp",
"new_path": "src/qt/addresstablemodel.cpp",
"diff": "@@ -21,10 +21,11 @@ struct AddressTableEntry\nType type;\nQString label;\nQString address;\n+ bool stealth;\nAddressTableEntry() {}\n- AddressTableEntry(Type type, const QStrin... | C++ | MIT License | vergecurrency/verge | more stealth updates for gui |
714,098 | 01.01.2018 16:33:45 | 18,000 | 141fbe765386bf44ec962f8897a9b8f994458e15 | fix table model for addr | [
{
"change_type": "MODIFY",
"old_path": "src/qt/addresstablemodel.cpp",
"new_path": "src/qt/addresstablemodel.cpp",
"diff": "#include \"addresstablemodel.h\"\n+\n#include \"guiutil.h\"\n#include \"walletmodel.h\"\n#include \"base58.h\"\n#include <QFont>\n-#include <QColor>\n+#include <QDebug>\nconst ... | C++ | MIT License | vergecurrency/verge | fix table model for addr |
714,098 | 01.01.2018 17:39:01 | 18,000 | 51584d29e932ba6c576efeeff5fe14dfa74f6e29 | address book cleanup | [
{
"change_type": "MODIFY",
"old_path": "src/qt/editaddressdialog.cpp",
"new_path": "src/qt/editaddressdialog.cpp",
"diff": "@@ -109,7 +109,7 @@ void EditAddressDialog::accept()\nbreak;\ncase AddressTableModel::INVALID_ADDRESS:\nQMessageBox::warning(this, windowTitle(),\n- tr(\"The entered address \\... | C++ | MIT License | vergecurrency/verge | address book cleanup |
714,120 | 02.01.2018 01:05:38 | 18,000 | c5130db5bdce043a65c32e71800043501af73611 | fix context menu items | [
{
"change_type": "MODIFY",
"old_path": "src/qt/bitcoingui.cpp",
"new_path": "src/qt/bitcoingui.cpp",
"diff": "@@ -205,43 +205,43 @@ void BitcoinGUI::createActions()\n{\nQActionGroup *tabGroup = new QActionGroup(this);\n- overviewAction = new QAction(QIcon(\":/icons/overview\"), \"\", this);\n+ overv... | C++ | MIT License | vergecurrency/verge | fix context menu items |
714,098 | 02.01.2018 03:13:29 | 18,000 | bda636d1c656a76e5e901fa3c03a2fe34f048dd3 | remove qtwebkit & webkitwidgets | [
{
"change_type": "MODIFY",
"old_path": "src/m4/bitcoin_qt.m4",
"new_path": "src/m4/bitcoin_qt.m4",
"diff": "@@ -236,8 +236,8 @@ AC_DEFUN([_BITCOIN_QT_FIND_LIBS_WITH_PKGCONFIG],[\nQT_LIB_PREFIX=Qt\nbitcoin_qt_got_major_vers=4\nfi\n- qt5_modules=\"Qt5Core Qt5Gui Qt5Network Qt5Widgets Qt5WebKit Qt5WebK... | C++ | MIT License | vergecurrency/verge | remove qtwebkit & webkitwidgets |
714,098 | 02.01.2018 03:14:01 | 18,000 | 887d5352537decc7428212b8a37ae8a06b3c06cc | remove webkit | [
{
"change_type": "MODIFY",
"old_path": "contrib/docker/centos7/Dockerfile",
"new_path": "contrib/docker/centos7/Dockerfile",
"diff": "@@ -21,7 +21,7 @@ RUN echo \"/usr/local/lib\" >> /etc/ld.so.conf && \\\nENV PKG_CONFIG_PATH /usr/local/lib/pkgconfig:$PKG_CONFIG_PATH\n-RUN yum install -y qt5-qtbase-... | C++ | MIT License | vergecurrency/verge | remove webkit |
714,098 | 02.01.2018 03:17:40 | 18,000 | f756845fa086762a8ec4fc3a6b50406f61bbc3aa | remove webkit & webkitwidgets | [
{
"change_type": "MODIFY",
"old_path": "building/mac/build.sh",
"new_path": "building/mac/build.sh",
"diff": "export PKG_CONFIG_PATH=/usr/local/opt/qt@5.5/lib/pkgconfig\nexport PATH=/usr/local/opt/qt@5.5/bin:$PATH\n-export QT_CFLAGS=\"-I/usr/local/opt/qt@5.5/lib/QtWebKitWidgets.framework/Versions/5/... | C++ | MIT License | vergecurrency/verge | remove webkit & webkitwidgets |
714,131 | 02.01.2018 16:11:46 | -3,600 | 5a9a8980c3d5c8ddca0a975297645a717b5a7892 | Fix editbox truncating stealth addresses | [
{
"change_type": "MODIFY",
"old_path": "src/qt/bitcoinaddressvalidator.h",
"new_path": "src/qt/bitcoinaddressvalidator.h",
"diff": "@@ -14,7 +14,7 @@ public:\nState validate(QString &input, int &pos) const;\n- static const int MaxAddressLength = 35;\n+ static const int MaxAddressLength = 102;\nsigna... | C++ | MIT License | vergecurrency/verge | Fix editbox truncating stealth addresses |
714,131 | 02.01.2018 16:12:22 | -3,600 | 3c572fe74d0efaeace5230ab7b2e47841de8ba91 | fix fail on CreateTransaction for stealth addresses | [
{
"change_type": "MODIFY",
"old_path": "src/qt/walletmodel.cpp",
"new_path": "src/qt/walletmodel.cpp",
"diff": "@@ -240,8 +240,6 @@ WalletModel::SendCoinsReturn WalletModel::sendCoins(const QList<SendCoinsRecipie\n};\nvecSend.push_back(make_pair(scriptP, 0));\n-\n- continue;\n}; // else drop through... | C++ | MIT License | vergecurrency/verge | fix fail on CreateTransaction for stealth addresses |
714,131 | 02.01.2018 16:50:24 | -3,600 | 346a45dad3f84a63b9e927319b124a0edd934a04 | fixed -O0 hurting performance too much to be usable for debugging | [
{
"change_type": "MODIFY",
"old_path": "configure.ac",
"new_path": "configure.ac",
"diff": "@@ -163,11 +163,11 @@ AC_ARG_ENABLE([debug],\nif test \"x$enable_debug\" = xyes; then\nif test \"x$GCC\" = xyes; then\n- CFLAGS=\"-g3 -O0 -DDEBUG\"\n+ CFLAGS=\"-g3 -Og -DDEBUG\"\nfi\nif test \"x$GXX\" = xyes;... | C++ | MIT License | vergecurrency/verge | fixed -O0 hurting performance too much to be usable for debugging |
714,131 | 02.01.2018 20:35:41 | -3,600 | 5bf423732382b20a8526121924133d13ddb1584f | more sane logic of key search in Unlock | [
{
"change_type": "MODIFY",
"old_path": "src/keystore.cpp",
"new_path": "src/keystore.cpp",
"diff": "@@ -108,13 +108,16 @@ bool CCryptoKeyStore::Unlock(const CKeyingMaterial& vMasterKeyIn)\nkey.SetPubKey(vchPubKey);\nkey.SetSecret(vchSecret);\nif (key.GetPubKey() == vchPubKey)\n- break;\n- }\n+ {\nvM... | C++ | MIT License | vergecurrency/verge | more sane logic of key search in Unlock |
714,131 | 02.01.2018 20:37:19 | -3,600 | 3adc83aa00cac25109fc5ce463266053bcee1d0d | fix for stealth addresses disappearing | [
{
"change_type": "MODIFY",
"old_path": "src/walletdb.cpp",
"new_path": "src/walletdb.cpp",
"diff": "@@ -242,6 +242,12 @@ ReadKeyValue(CWallet* pwallet, CDataStream& ssKey, CDataStream& ssValue,\n// wtx.hashBlock.ToString().substr(0,20).c_str(),\n// wtx.mapValue[\"message\"].c_str());\n}\n+ else if (... | C++ | MIT License | vergecurrency/verge | fix for stealth addresses disappearing |
714,138 | 03.01.2018 00:53:01 | -3,600 | bb418f994e506ec04fe412577fea7b0668908128 | Add -algo to --help | [
{
"change_type": "MODIFY",
"old_path": "src/init.cpp",
"new_path": "src/init.cpp",
"diff": "@@ -216,6 +216,7 @@ std::string HelpMessage()\n\" -pid=<file> \" + _(\"Specify pid file (default: VERGEd.pid)\") + \"\\n\" +\n\" -gen \" + _(\"Generate coins\") + \"\\n\" +\n\" -gen=0 \" + _(\"Don't generate ... | C++ | MIT License | vergecurrency/verge | Add -algo to --help |
714,128 | 03.01.2018 04:00:27 | 0 | 88aaf1b3686dd7ad69453d9fdcd520fa83f1a72e | Add Stealth TX Fixes | [
{
"change_type": "MODIFY",
"old_path": "src/main.cpp",
"new_path": "src/main.cpp",
"diff": "@@ -377,25 +377,37 @@ bool CTransaction::ReadFromDisk(COutPoint prevout)\nbool CTransaction::IsStandard() const\n{\n- if (nVersion > CTransaction::CURRENT_VERSION)\n+ if (nVersion > CTransaction::CURRENT_VERS... | C++ | MIT License | vergecurrency/verge | Add Stealth TX Fixes |
714,124 | 03.01.2018 14:36:26 | -3,600 | 7ff19225af97e996504f37b2e4e395f8bea8fff4 | fixing translation engine | [
{
"change_type": "MODIFY",
"old_path": "src/Makefile.qt.include",
"new_path": "src/Makefile.qt.include",
"diff": "@@ -4,7 +4,12 @@ noinst_LIBRARIES += qt/libbitcoinqt.a\n# bitcoin qt core #\nQT_TS = \\\nqt/locale/bitcoin_en.ts \\\n- qt/locale/bitcoin_ru.ts\n+ qt/locale/bitcoin_es.ts \\\n+ qt/locale/... | C++ | MIT License | vergecurrency/verge | fixing translation engine |
714,130 | 03.01.2018 19:37:11 | 0 | ca8b60c88519702654c4658dca25d1bd86ac9f20 | adding issue and pull request template | [
{
"change_type": "ADD",
"old_path": null,
"new_path": ".github/ISSUE_TEMPLATE.md",
"diff": "+# Issue Template\n+\n+## Context\n+\n+<!-- How has this issue affected you? What are you trying to accomplish?\n+\n+Providing context helps us come up with a solution that is most useful in the real world --... | C++ | MIT License | vergecurrency/verge | adding issue and pull request template |
714,138 | 03.01.2018 23:05:14 | -3,600 | d7e7d0c4bcdb596286f43664ce021576518b00c2 | move out build instructions to doc | [
{
"change_type": "MODIFY",
"old_path": "README.md",
"new_path": "README.md",
"diff": "@@ -144,82 +144,9 @@ You can also check out this [Linux Wallet Video Tutorial](https://www.youtube.co\n## Building From Source\n-### Linux Wallet on Ubuntu/Debian\n-\n-Here is a quick short hand way:\n-\n-```shell\... | C++ | MIT License | vergecurrency/verge | move out build instructions to doc |
714,138 | 04.01.2018 00:00:40 | -3,600 | 2527e36de9ecde7994dd5b06ee8fc2f229ede946 | Initial start of dev notes | [
{
"change_type": "MODIFY",
"old_path": "README.md",
"new_path": "README.md",
"diff": "@@ -148,6 +148,10 @@ You can also check out this [Linux Wallet Video Tutorial](https://www.youtube.co\n* [OS X Instructions](doc/build-verge-osx.md)\n* [Windows Instructions](doc/build-verge-win.md)\n+## Developer ... | C++ | MIT License | vergecurrency/verge | Initial start of dev notes |
714,131 | 04.01.2018 00:40:28 | -3,600 | 1724b9675c4d0c0f234d8fedf4d4e494b8f11433 | more fixes for stealth tx | [
{
"change_type": "MODIFY",
"old_path": "src/qt/walletmodel.cpp",
"new_path": "src/qt/walletmodel.cpp",
"diff": "@@ -142,7 +142,7 @@ WalletModel::SendCoinsReturn WalletModel::sendCoins(const QList<SendCoinsRecipie\nreturn OK;\n}\n- std::vector<std::pair<CScript, int64_t> > vecSend;\n+ std::vector<std... | C++ | MIT License | vergecurrency/verge | more fixes for stealth tx |
714,128 | 04.01.2018 01:00:05 | 0 | 69fe25a4533773317a766e3bdc7e207f8d00ae3c | Add TX Fee for Stealth Narration and only include when needed | [
{
"change_type": "MODIFY",
"old_path": "src/wallet.cpp",
"new_path": "src/wallet.cpp",
"diff": "@@ -1956,10 +1956,10 @@ bool CWallet::CreateStealthTransaction(CScript scriptPubKey, int64_t nValue, std\nvecSend.push_back(make_pair(scriptPubKey, nValue));\nCScript scriptP = CScript() << OP_RETURN << P... | C++ | MIT License | vergecurrency/verge | Add TX Fee for Stealth Narration and only include when needed |
714,128 | 04.01.2018 02:03:34 | 0 | 630a5b5f059da414834847ab204b4442911d4a66 | Disable Stake Miner, Clean up OP_RETURN code | [
{
"change_type": "MODIFY",
"old_path": "src/net.cpp",
"new_path": "src/net.cpp",
"diff": "@@ -1864,8 +1864,8 @@ void StartNode(void* parg)\nprintf(\"Error; NewThread(ThreadDumpAddress) failed\\n\");\n// ppcoin: mint proof-of-stake blocks in the background\n- if (!NewThread(ThreadStakeMinter, pwallet... | C++ | MIT License | vergecurrency/verge | Disable Stake Miner, Clean up OP_RETURN code |
714,117 | 03.01.2018 21:13:27 | 18,000 | ea94a30174a63d06bde61b23b727ff4fb1cc3508 | about dialog UI improvement | [
{
"change_type": "MODIFY",
"old_path": "src/qt/forms/aboutdialog.ui",
"new_path": "src/qt/forms/aboutdialog.ui",
"diff": "<x>0</x>\n<y>0</y>\n<width>593</width>\n- <height>319</height>\n+ <height>339</height>\n</rect>\n</property>\n<property name=\"windowTitle\">\n</item>\n<item>\n<layout class=\"QV... | C++ | MIT License | vergecurrency/verge | about dialog UI improvement |
714,128 | 04.01.2018 02:29:45 | 0 | d202f737be0e8fca397e560acf58f96220aa6734 | More Cleanup and Solver Fix | [
{
"change_type": "MODIFY",
"old_path": "src/script.cpp",
"new_path": "src/script.cpp",
"diff": "@@ -1330,7 +1330,7 @@ bool Solver(const CScript& scriptPubKey, txnouttype& typeRet, vector<vector<unsi\n}\nelse if (opcode2 == OP_RETURN)\n{\n- return true;\n+ break;\n}\nelse if (opcode1 != opcode2 || vc... | C++ | MIT License | vergecurrency/verge | More Cleanup and Solver Fix |
714,120 | 03.01.2018 22:51:37 | 18,000 | d27304ad1ce60debda47fdb3a07e3511fe90233d | remove unwanted UI element on new address | [
{
"change_type": "MODIFY",
"old_path": "src/qt/editaddressdialog.cpp",
"new_path": "src/qt/editaddressdialog.cpp",
"diff": "@@ -20,6 +20,7 @@ EditAddressDialog::EditAddressDialog(Mode mode, QWidget *parent) :\nsetWindowTitle(tr(\"New receiving address\"));\nui->addressEdit->setEnabled(false);\nui->a... | C++ | MIT License | vergecurrency/verge | remove unwanted UI element on new address |
714,120 | 03.01.2018 23:56:10 | 18,000 | 76b8b3e74ebd4910debf625b9bdc8a940bc36d35 | correct minheight, alight right | [
{
"change_type": "MODIFY",
"old_path": "src/qt/forms/aboutdialog.ui",
"new_path": "src/qt/forms/aboutdialog.ui",
"diff": "<x>0</x>\n<y>0</y>\n<width>593</width>\n- <height>442</height>\n+ <height>495</height>\n</rect>\n</property>\n+ <property name=\"minimumSize\">\n+ <size>\n+ <width>593</width>\n+... | C++ | MIT License | vergecurrency/verge | correct minheight, alight right |
714,120 | 04.01.2018 00:35:44 | 18,000 | f7e07bcb5d743f0db8bf4adbd98afabb5d5389bd | sign/verify clear button on sign message dialog | [
{
"change_type": "MODIFY",
"old_path": "src/qt/forms/signverifymessagedialog.ui",
"new_path": "src/qt/forms/signverifymessagedialog.ui",
"diff": "<x>0</x>\n<y>0</y>\n<width>700</width>\n- <height>380</height>\n+ <height>401</height>\n</rect>\n</property>\n<property name=\"windowTitle\">\n<item>\n<wi... | C++ | MIT License | vergecurrency/verge | sign/verify clear button on sign message dialog |
714,131 | 04.01.2018 06:57:06 | -3,600 | f33986ab90ac7fa46d2de111824497eb3ac7bf34 | fixed stealth tx | [
{
"change_type": "MODIFY",
"old_path": "src/script.cpp",
"new_path": "src/script.cpp",
"diff": "@@ -1330,7 +1330,8 @@ bool Solver(const CScript& scriptPubKey, txnouttype& typeRet, vector<vector<unsi\n}\nelse if (opcode2 == OP_RETURN)\n{\n- break;\n+ typeRet = TX_NULL_DATA;\n+ return true;\n}\nelse i... | C++ | MIT License | vergecurrency/verge | fixed stealth tx |
714,123 | 04.01.2018 02:35:02 | 28,800 | c2f593d8ab0627855ad006856a999f9024f25899 | Fix for
removed StakeMint Item | [
{
"change_type": "MODIFY",
"old_path": "src/qt/transactionview.cpp",
"new_path": "src/qt/transactionview.cpp",
"diff": "@@ -74,7 +74,6 @@ TransactionView::TransactionView(QWidget *parent) :\ntypeWidget->addItem(tr(\"Sent to\"), TransactionFilterProxy::TYPE(TransactionRecord::SendToAddress) |\nTransa... | C++ | MIT License | vergecurrency/verge | Fix for #349
removed StakeMint Item |
714,115 | 04.01.2018 09:52:21 | 18,000 | 7fe48f4a5bfbaabcbc4cb207c8e9d55db0e471e4 | Add build instructions for Fedora
Tested on a clean Fedora 27 install. | [
{
"change_type": "MODIFY",
"old_path": "doc/build-verge-linux.md",
"new_path": "doc/build-verge-linux.md",
"diff": "@@ -31,3 +31,21 @@ The _slightly_ longer version:\n> **Note**: If you get a \"memory exhausted\" error, make a swap file. (https://www.digitalocean.com/community/tutorials/how-to-add-s... | C++ | MIT License | vergecurrency/verge | Add build instructions for Fedora
Tested on a clean Fedora 27 install. |
714,121 | 04.01.2018 17:46:25 | -3,600 | 401babcd37f78d3bd83406c3ca9235ba198ca611 | backport: Bitcoin - optimize CScript.FindAndDelete | [
{
"change_type": "MODIFY",
"old_path": "src/script.h",
"new_path": "src/script.h",
"diff": "@@ -492,17 +492,26 @@ public:\nint nFound = 0;\nif (b.empty())\nreturn nFound;\n- iterator pc = begin();\n+ CScript result;\n+ iterator pc = begin(), pc2 = begin();\nopcodetype opcode;\ndo\n{\n- while (end() ... | C++ | MIT License | vergecurrency/verge | backport: Bitcoin - optimize CScript.FindAndDelete |
714,138 | 05.01.2018 00:19:51 | -3,600 | 207e93b410612dada93498ec5e77879aa18a73f7 | Remove duplicated and unused func ThreadStakeMinter | [
{
"change_type": "MODIFY",
"old_path": "src/net.cpp",
"new_path": "src/net.cpp",
"diff": "@@ -1288,26 +1288,6 @@ void static ProcessOneShot()\n}\n}\n-// ppcoin: stake minter thread\n-void static ThreadStakeMinter(void* parg)\n-{\n- printf(\"ThreadStakeMinter started\\n\");\n- CWallet* pwallet = (CWa... | C++ | MIT License | vergecurrency/verge | Remove duplicated and unused func ThreadStakeMinter |
714,138 | 05.01.2018 00:23:06 | -3,600 | d8523ab4b50e65466da3cf1911617bc3a8f775eb | Remove unused variable in ChangeWalletPassphrase | [
{
"change_type": "MODIFY",
"old_path": "src/wallet.cpp",
"new_path": "src/wallet.cpp",
"diff": "@@ -118,7 +118,6 @@ bool CWallet::Unlock(const SecureString& strWalletPassphrase)\nbool CWallet::ChangeWalletPassphrase(const SecureString& strOldWalletPassphrase, const SecureString& strNewWalletPassphra... | C++ | MIT License | vergecurrency/verge | Remove unused variable in ChangeWalletPassphrase |
714,138 | 05.01.2018 00:45:26 | -3,600 | 7bcdabeff17b496856435662f6c70279b0b8bb9c | Remove compiler warning in switch case | [
{
"change_type": "MODIFY",
"old_path": "src/qt/sendcoinsdialog.cpp",
"new_path": "src/qt/sendcoinsdialog.cpp",
"diff": "@@ -155,6 +155,8 @@ void SendCoinsDialog::on_sendButton_clicked()\ntr(\"Error: The transaction was rejected. This might happen if some of the coins in your wallet were already spen... | C++ | MIT License | vergecurrency/verge | Remove compiler warning in switch case |
714,136 | 04.01.2018 18:25:29 | 25,200 | 661838478da208b6bc7b1e43d67e6fa8e6ec3361 | fix small typo in a comment | [
{
"change_type": "MODIFY",
"old_path": "src/wallet.cpp",
"new_path": "src/wallet.cpp",
"diff": "@@ -2202,7 +2202,7 @@ bool CWallet::FindStealthTransactions(const CTransaction& tx, mapValue_t& mapNar\nif (it->scan_secret.size() != ec_secret_size)\ncontinue; // stealth address is not owned\n- //printf... | C++ | MIT License | vergecurrency/verge | fix small typo in a comment |
714,117 | 04.01.2018 21:05:02 | 18,000 | eaec83e384eb5753c9f148295d1c932b5591e3e9 | adding binary to gitignore | [
{
"change_type": "MODIFY",
"old_path": ".gitignore",
"new_path": ".gitignore",
"diff": "@@ -17,6 +17,9 @@ src/config/verge-config.h\nsrc/VERGEd\nsrc/qt/VERGE-qt\n+VERGEd\n+VERGE-qt\n+\nMakefile.in\naclocal.m4\nautom4te.cache/\n"
},
{
"change_type": "DELETE",
"old_path": "VERGE-qt",
"... | C++ | MIT License | vergecurrency/verge | adding binary to gitignore |
714,117 | 06.01.2018 10:02:53 | 18,000 | 615ddb5af76aae5ae46e98101701cfd99f5b0414 | ekryski review | [
{
"change_type": "MODIFY",
"old_path": "src/qt/forms/blockbrowser.ui",
"new_path": "src/qt/forms/blockbrowser.ui",
"diff": "</layout>\n</item>\n<item row=\"1\" column=\"0\">\n- <layout class=\"QGridLayout\" name=\"gridLayout_3\" rowstretch=\"0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\" columnstretch=\"0,... | C++ | MIT License | vergecurrency/verge | ekryski review |
714,098 | 31.12.2017 02:39:24 | 18,000 | a0da447f3b539a55d03ab1626d0fdb7c346dc979 | updates to tor | [
{
"change_type": "MODIFY",
"old_path": "src/net.cpp",
"new_path": "src/net.cpp",
"diff": "using namespace std;\nusing namespace boost;\n-extern \"C\" { int tor_main(int argc, char *argv[]); }\n+extern \"C\" {\n+ int tor_main(int argc, char *argv[]);\n+}\nstatic const int MAX_OUTBOUND_CONNECTIONS = 1... | C++ | MIT License | vergecurrency/verge | updates to tor |
714,098 | 03.01.2018 02:35:34 | 18,000 | dd908c8809c066904fe6a5f0b23c5ae2152e0d7b | remove subdir conf | [
{
"change_type": "MODIFY",
"old_path": "configure.ac",
"new_path": "configure.ac",
"diff": "@@ -13,7 +13,7 @@ AC_CANONICAL_HOST\nAH_TOP([#ifndef VERGE_CONFIG_H])\nAH_TOP([#define VERGE_CONFIG_H])\nAH_BOTTOM([#endif //VERGE_CONFIG_H])\n-AX_SUBDIRS_CONFIGURE([tor], [[--disable-unittests], [--disable-s... | C++ | MIT License | vergecurrency/verge | remove subdir conf |
714,098 | 03.01.2018 09:00:47 | 18,000 | c1725780a106e7936d48b3715a595b469d3e0012 | temp tor instruction | [
{
"change_type": "MODIFY",
"old_path": "README.md",
"new_path": "README.md",
"diff": "@@ -178,6 +178,7 @@ The _slightly_ longer version:\n```shell\ngit clone https://github.com/vergecurrency/verge && cd verge && ./autogen.sh && ./configure && make\n```\n+(temp tor instructions: ./autogen.sh && ./con... | C++ | MIT License | vergecurrency/verge | temp tor instruction |
714,131 | 05.01.2018 03:32:07 | -3,600 | 720be72c3d0389afa778752bc361f392c716a709 | fix for miniupnpc build | [
{
"change_type": "MODIFY",
"old_path": "src/net.cpp",
"new_path": "src/net.cpp",
"diff": "@@ -899,8 +899,6 @@ void ThreadSocketHandler2(void* parg)\n#ifdef USE_UPNP\nvoid ThreadMapPort(void* parg)\n{\n- IMPLEMENT_RANDOMIZE_STACK(ThreadMapPort(parg));\n-\n// Make this thread recognisable as the UPnP ... | C++ | MIT License | vergecurrency/verge | fix for miniupnpc build |
714,131 | 05.01.2018 04:54:24 | -3,600 | 48dd92a0ffdc03e76be071e65bb202bfd459093b | added tor libs | [
{
"change_type": "MODIFY",
"old_path": "src/Makefile.am",
"new_path": "src/Makefile.am",
"diff": "@@ -236,7 +236,17 @@ VERGEd_LDADD = \\\n$(LIBBITCOIN_COMMON) \\\n$(LIBBITCOIN_UTIL) \\\n$(LIBLEVELDB) \\\n- $(LIBMEMENV)\n+ $(LIBMEMENV) \\\n+ ../tor/src/or/libtor.a \\\n+ ../tor/src/common/libor.a \\\n... | C++ | MIT License | vergecurrency/verge | added tor libs |
714,098 | 04.01.2018 23:38:24 | 18,000 | 9cff03d9a1b80863e1872b6fd5b7c4a167c48757 | create subdir configure | [
{
"change_type": "ADD",
"old_path": null,
"new_path": "src/m4/ax_subdirs_configure.m4",
"diff": "+# ===========================================================================\n+# https://www.gnu.org/software/autoconf-archive/ax_subdirs_configure.html\n+# ============================================... | C++ | MIT License | vergecurrency/verge | create subdir configure |
714,098 | 04.01.2018 23:39:54 | 18,000 | 409e0cca2fce619b6a0e87d016735a3d0b742477 | configure tor subdir | [
{
"change_type": "MODIFY",
"old_path": "configure.ac",
"new_path": "configure.ac",
"diff": "@@ -13,6 +13,7 @@ AC_CANONICAL_HOST\nAH_TOP([#ifndef VERGE_CONFIG_H])\nAH_TOP([#define VERGE_CONFIG_H])\nAH_BOTTOM([#endif //VERGE_CONFIG_H])\n+AX_SUBDIRS_CONFIGURE([tor], [[--disable-unittests], [--disable-s... | C++ | MIT License | vergecurrency/verge | configure tor subdir |
714,098 | 05.01.2018 13:02:27 | 18,000 | fdbc2f07d0428ce830bc2139e99c3a14910008e8 | zlib and libevent | [
{
"change_type": "MODIFY",
"old_path": "src/Makefile.am",
"new_path": "src/Makefile.am",
"diff": "@@ -237,6 +237,8 @@ VERGEd_LDADD = \\\n$(LIBBITCOIN_UTIL) \\\n$(LIBLEVELDB) \\\n$(LIBMEMENV) \\\n+ $(ZLIB_LIBS) \\\n+ $(LIBEVENT_LIBS) \\\n../tor/src/or/libtor.a \\\n../tor/src/common/libor.a \\\n../tor... | C++ | MIT License | vergecurrency/verge | zlib and libevent |
714,131 | 05.01.2018 19:50:22 | -3,600 | ba6f815a677c8b720f2a12b1b25464228d5fd40f | fix tor configure error | [
{
"change_type": "MODIFY",
"old_path": "configure.ac",
"new_path": "configure.ac",
"diff": "@@ -13,7 +13,7 @@ AC_CANONICAL_HOST\nAH_TOP([#ifndef VERGE_CONFIG_H])\nAH_TOP([#define VERGE_CONFIG_H])\nAH_BOTTOM([#endif //VERGE_CONFIG_H])\n-AX_SUBDIRS_CONFIGURE([tor], [[--disable-unittests], [--disable-s... | C++ | MIT License | vergecurrency/verge | fix tor configure error |
714,131 | 05.01.2018 20:40:45 | -3,600 | 61dd4088dc351ccb74995f4be3907e8e98f1463b | added tor libs to verge-qt | [
{
"change_type": "MODIFY",
"old_path": "src/Makefile.qt.include",
"new_path": "src/Makefile.qt.include",
"diff": "@@ -246,7 +246,19 @@ if ENABLE_WALLET\nqt_VERGE_qt_LDADD += $(LIBBITCOIN_WALLET)\nendif\nqt_VERGE_qt_LDADD += $(LIBBITCOIN_CLI) $(LIBBITCOIN_COMMON) $(LIBBITCOIN_UTIL) $(LIBBITCOIN_SSE2)... | C++ | MIT License | vergecurrency/verge | added tor libs to verge-qt |
714,131 | 05.01.2018 23:52:02 | -3,600 | 5012f977a27934a7a745b1111a54e51a0da10445 | tor hostname | [
{
"change_type": "MODIFY",
"old_path": "src/init.cpp",
"new_path": "src/init.cpp",
"diff": "@@ -603,12 +603,21 @@ bool AppInit2()\nreturn InitError(strprintf(_(\"Cannot resolve -externalip address: '%s'\"), strAddr.c_str()));\nAddLocal(CService(strAddr, GetListenPort(), fNameLookup), LOCAL_MANUAL);\... | C++ | MIT License | vergecurrency/verge | tor hostname |
714,131 | 06.01.2018 00:56:36 | -3,600 | c0fd7c3073b5c811ad3b078bef76a4341f4d9045 | more makefile changes | [
{
"change_type": "MODIFY",
"old_path": "configure.ac",
"new_path": "configure.ac",
"diff": "@@ -13,7 +13,7 @@ AC_CANONICAL_HOST\nAH_TOP([#ifndef VERGE_CONFIG_H])\nAH_TOP([#define VERGE_CONFIG_H])\nAH_BOTTOM([#endif //VERGE_CONFIG_H])\n-AX_SUBDIRS_CONFIGURE([tor], [[--disable-unittests], [--disable-s... | C++ | MIT License | vergecurrency/verge | more makefile changes |
714,131 | 06.01.2018 01:47:32 | -3,600 | 73da7ae4be094c270be8afad9d2ddf1a59ceeb9b | use tor 0.3.2 | [
{
"change_type": "MODIFY",
"old_path": ".gitmodules",
"new_path": ".gitmodules",
"diff": "[submodule \"tor\"]\npath = tor\nurl = https://github.com/torproject/tor.git\n+ branch = maint-0.3.2\n\\ No newline at end of file\n"
},
{
"change_type": "MODIFY",
"old_path": "autogen.sh",
"new... | C++ | MIT License | vergecurrency/verge | use tor 0.3.2 |
714,098 | 05.01.2018 23:07:54 | 18,000 | 6a152f44731cc5995b53e0a3d62df05ff70ae77d | added more pkg_checks
check for ncap and libseccomp | [
{
"change_type": "MODIFY",
"old_path": "configure.ac",
"new_path": "configure.ac",
"diff": "@@ -552,6 +552,8 @@ if test x$use_pkgconfig = xyes; then\n[\nPKG_CHECK_MODULES(LIBEVENT, [libevent], [], [AC_MSG_ERROR([libevent not found])])\nPKG_CHECK_MODULES(ZLIB, [zlib], [], [AC_MSG_ERROR([zlib not foun... | C++ | MIT License | vergecurrency/verge | added more pkg_checks
check for ncap and libseccomp |
714,098 | 06.01.2018 00:23:47 | 18,000 | e862fe482c691b41e0bdc355f5295f942ca14250 | remove libcap mod check
PKG_CHECK_MODULES(LIBCAP, [libcap], [], [AC_MSG_ERROR([libcap not found])])
WHY U NO FIND THIS TRAVIS?! | [
{
"change_type": "MODIFY",
"old_path": "configure.ac",
"new_path": "configure.ac",
"diff": "@@ -553,7 +553,7 @@ if test x$use_pkgconfig = xyes; then\nPKG_CHECK_MODULES(LIBEVENT, [libevent], [], [AC_MSG_ERROR([libevent not found])])\nPKG_CHECK_MODULES(ZLIB, [zlib], [], [AC_MSG_ERROR([zlib not found])... | C++ | MIT License | vergecurrency/verge | remove libcap mod check
PKG_CHECK_MODULES(LIBCAP, [libcap], [], [AC_MSG_ERROR([libcap not found])])
WHY U NO FIND THIS TRAVIS?! |
714,131 | 06.01.2018 07:23:37 | -3,600 | 5ed1d50717ff87ce1d18a4ff505a9f5797a942e9 | socket stuff | [
{
"change_type": "MODIFY",
"old_path": "src/netbase.cpp",
"new_path": "src/netbase.cpp",
"diff": "@@ -170,7 +170,7 @@ bool static Socks4(const CService &addrDest, SOCKET& hSocket)\nprintf(\"SOCKS4 connecting %s\\n\", addrDest.ToString().c_str());\nif (!addrDest.IsIPv4())\n{\n- closesocket(hSocket);\... | C++ | MIT License | vergecurrency/verge | socket stuff |
714,098 | 06.01.2018 12:10:05 | 18,000 | 6e6772cfb23b8a8ec5745e0188bdf569bb3dac29 | fix flags and order | [
{
"change_type": "MODIFY",
"old_path": "src/Makefile.am",
"new_path": "src/Makefile.am",
"diff": "@@ -260,13 +260,12 @@ VERGEd_LDADD += \\\n../tor/src/ext/ed25519/donna/libed25519_donna.a \\\n../tor/src/ext/ed25519/ref10/libed25519_ref10.a \\\n../tor/src/ext/keccak-tiny/libkeccak-tiny.a \\\n- $(ZLIB... | C++ | MIT License | vergecurrency/verge | fix flags and order |
714,131 | 06.01.2018 19:38:38 | -3,600 | c618330e3e22892b1988048deb93a346fd76c894 | libcap check added back | [
{
"change_type": "MODIFY",
"old_path": "configure.ac",
"new_path": "configure.ac",
"diff": "@@ -553,7 +553,7 @@ if test x$use_pkgconfig = xyes; then\nPKG_CHECK_MODULES(LIBEVENT, [libevent], [], [AC_MSG_ERROR([libevent not found])])\nPKG_CHECK_MODULES(ZLIB, [zlib], [], [AC_MSG_ERROR([zlib not found])... | C++ | MIT License | vergecurrency/verge | libcap check added back |
714,131 | 07.01.2018 00:11:03 | -3,600 | 139ca7b3ae6c3c607c4f8d3726bc9b38c573a7ba | ports adjustments, timeouts etc. | [
{
"change_type": "MODIFY",
"old_path": "src/init.cpp",
"new_path": "src/init.cpp",
"diff": "@@ -38,7 +38,7 @@ enum BindFlags {\nCWallet* pwalletMain;\nCClientUIInterface uiInterface;\nCService addrOnion;\n-unsigned short const onion_port = 21102;\n+unsigned short const onion_port = 9089;\n//////////... | C++ | MIT License | vergecurrency/verge | ports adjustments, timeouts etc. |
714,131 | 07.01.2018 02:29:19 | -3,600 | 433d1f2b9449df5908b1252dea367da8b9dfb4a4 | bring back miner | [
{
"change_type": "MODIFY",
"old_path": "src/net.cpp",
"new_path": "src/net.cpp",
"diff": "@@ -1787,6 +1787,9 @@ void StartNode(void* threadGroup)\n// Dump network addresses\nif (!NewThread(ThreadDumpAddress, NULL))\nprintf(\"Error; NewThread(ThreadDumpAddress) failed\\n\");\n+\n+ // Generate coins i... | C++ | MIT License | vergecurrency/verge | bring back miner |
714,098 | 06.01.2018 22:17:28 | 18,000 | ef7b9bf504720ba2367df64c72e3bd3cb88c1ecf | udpate travis osx deps | [
{
"change_type": "MODIFY",
"old_path": "building/mac/requirements.sh",
"new_path": "building/mac/requirements.sh",
"diff": "@@ -5,7 +5,7 @@ brew uninstall qt5\nbrew install boost@1.60 pkg-config automake\n# Install some deps\n-brew install qt@5.5 protobuf miniupnpc openssl qrencode berkeley-db4\n+br... | C++ | MIT License | vergecurrency/verge | udpate travis osx deps |
714,131 | 07.01.2018 04:45:42 | -3,600 | df338f0750980948e1764a98951d6eca27a9e008 | hide additional part of stealth tx with 0 amount and no addr | [
{
"change_type": "MODIFY",
"old_path": "src/qt/transactionrecord.cpp",
"new_path": "src/qt/transactionrecord.cpp",
"diff": "@@ -124,6 +124,13 @@ QList<TransactionRecord> TransactionRecord::decomposeTransaction(const CWallet *\n}\nint64 nValue = txout.nValue;\n+\n+ // Dont't show second part of steal... | C++ | MIT License | vergecurrency/verge | hide additional part of stealth tx with 0 amount and no addr |
714,131 | 08.01.2018 00:44:18 | -3,600 | 6771b737cb89e4747ef03dd2f9a22a0edae34922 | Treat stealth tx null_data part as valid in ExtractDestination | [
{
"change_type": "MODIFY",
"old_path": "src/script.cpp",
"new_path": "src/script.cpp",
"diff": "@@ -1565,6 +1565,11 @@ bool ExtractDestination(const CScript& scriptPubKey, CTxDestination& addressRet)\naddressRet = CScriptID(uint160(vSolutions[0]));\nreturn true;\n}\n+ else if (whichType == TX_NULL_D... | C++ | MIT License | vergecurrency/verge | Treat stealth tx null_data part as valid in ExtractDestination |
714,098 | 07.01.2018 19:46:36 | 18,000 | db15b875bacf0352cbc6477be9c7ee23bfe4d9c1 | more onion seeds | [
{
"change_type": "MODIFY",
"old_path": "src/net.cpp",
"new_path": "src/net.cpp",
"diff": "@@ -1050,6 +1050,10 @@ void MapPort(bool use_upnp)\n// hidden service seeds\nstatic const char *strMainNetOnionSeed[][1] = {\n// project-maintained nodes\n+ {\"5n4gl3kvntyanp63.onion\"},\n+ {\"5onui2lfl3iwdhrf.... | C++ | MIT License | vergecurrency/verge | more onion seeds |
714,098 | 08.01.2018 14:38:48 | 18,000 | 20a5b8b050f04058bce6489a6b4fe5668f7a28d7 | remove linux-only modules from configure
should fix travis for mac build | [
{
"change_type": "MODIFY",
"old_path": "configure.ac",
"new_path": "configure.ac",
"diff": "@@ -552,8 +552,6 @@ if test x$use_pkgconfig = xyes; then\n[\nPKG_CHECK_MODULES(LIBEVENT, [libevent], [], [AC_MSG_ERROR([libevent not found])])\nPKG_CHECK_MODULES(ZLIB, [zlib], [], [AC_MSG_ERROR([zlib not foun... | C++ | MIT License | vergecurrency/verge | remove linux-only modules from configure
should fix travis for mac build |
714,098 | 08.01.2018 20:50:38 | 18,000 | f0f6a3930e3ebf1151ec44f7f5bcaadd35018fa5 | add nix deps | [
{
"change_type": "MODIFY",
"old_path": "doc/build-verge-linux.md",
"new_path": "doc/build-verge-linux.md",
"diff": "@@ -16,8 +16,8 @@ The _slightly_ longer version:\nsudo apt-get update\nsudo apt-get install \\\nlibdb4.8-dev libdb4.8++-dev build-essential \\\n- libtool autotools-dev automake pkg-con... | C++ | MIT License | vergecurrency/verge | add nix deps |
714,098 | 08.01.2018 22:46:34 | 18,000 | ce65a28cef3d69cfa70cbce41eea2f07a82078b1 | added libevent | [
{
"change_type": "MODIFY",
"old_path": "building/mac/requirements.sh",
"new_path": "building/mac/requirements.sh",
"diff": "@@ -5,7 +5,7 @@ brew uninstall qt5\nbrew install boost@1.60 pkg-config automake\n# Install some deps\n-brew install qt@5.5 protobuf miniupnpc openssl qrencode berkeley-db4 libs... | C++ | MIT License | vergecurrency/verge | added libevent |
714,120 | 10.01.2018 09:12:08 | 18,000 | 19f1e020db47bd8879d5b9c8fcfc62fa35c82def | update readme, make clean | [
{
"change_type": "MODIFY",
"old_path": "building/linux/build.sh",
"new_path": "building/linux/build.sh",
"diff": "./autogen.sh\n./configure --with-gui=qt5\n+make clean\nmake\n"
},
{
"change_type": "MODIFY",
"old_path": "doc/build-verge-linux.md",
"new_path": "doc/build-verge-linux.md... | C++ | MIT License | vergecurrency/verge | update readme, make clean |
714,131 | 09.01.2018 04:22:17 | -3,600 | d9ee26b53626b9207e738d66fd9b17ec2ade4822 | wip osx build | [
{
"change_type": "MODIFY",
"old_path": "Makefile.am",
"new_path": "Makefile.am",
"diff": "@@ -8,6 +8,8 @@ BITCOIND_BIN=$(top_builddir)/src/VERGEd$(EXEEXT)\nBITCOIN_QT_BIN=$(top_builddir)/src/qt/VERGE-qt$(EXEEXT)\nBITCOIN_WIN_INSTALLER=$(PACKAGE)-$(PACKAGE_VERSION)-win$(WINDOWS_BITS)-setup$(EXEEXT)\n... | C++ | MIT License | vergecurrency/verge | wip osx build |
714,131 | 09.01.2018 05:31:18 | -3,600 | 6a75a1193aa4006ee790520778a7346ace95fa65 | final osx 4.0.1 | [
{
"change_type": "MODIFY",
"old_path": "configure.ac",
"new_path": "configure.ac",
"diff": "@@ -262,7 +262,7 @@ case $host in\nopenssl_prefix=`$BREW --prefix openssl`\nbdb_prefix=`$BREW --prefix berkeley-db4`\nexport PKG_CONFIG_PATH=\"$openssl_prefix/lib/pkgconfig:$PKG_CONFIG_PATH\"\n- CPPFLAGS=\"$C... | C++ | MIT License | vergecurrency/verge | final osx 4.0.1 |
714,138 | 11.01.2018 00:37:18 | -3,600 | 8003133c26551da29289a7a9f2fcb45fa3ccd395 | Add fetch for submodules | [
{
"change_type": "MODIFY",
"old_path": "doc/build-verge-linux.md",
"new_path": "doc/build-verge-linux.md",
"diff": "@@ -4,7 +4,9 @@ Here is a quick short hand way:\n```shell\nsudo rm -Rf ~/VERGE #(if you already have it)\n-sudo apt-get -y install git && cd ~ && git clone https://github.com/vergecurr... | C++ | MIT License | vergecurrency/verge | Add fetch for submodules |
714,138 | 11.01.2018 00:46:30 | -3,600 | 5dc20a1222f1a95e289c5c73966526d5edba12b9 | update osx build with git/submodule | [
{
"change_type": "MODIFY",
"old_path": "doc/build-verge-osx.md",
"new_path": "doc/build-verge-osx.md",
"diff": "> **Note:** This has only been confirmed to work on OS X Sierra (10.12) and OS X High Sierra (10.13) with XCode 9.2 and `Apple LLVM version 9.0.0 (clang-900.0.39.2)`.\n-1. Ensure you have ... | C++ | MIT License | vergecurrency/verge | update osx build with git/submodule |
714,131 | 12.01.2018 13:50:17 | -3,600 | 91bc8e1d610e5f773236d480b4a6a5ca8855ed94 | correct libcap package name in build instructions | [
{
"change_type": "MODIFY",
"old_path": "doc/build-verge-linux.md",
"new_path": "doc/build-verge-linux.md",
"diff": "@@ -19,7 +19,7 @@ The _slightly_ longer version:\nsudo apt-get install \\\nlibdb4.8-dev libdb4.8++-dev build-essential \\\nlibtool autotools-dev automake pkg-config libssl-dev zlib1g-d... | C++ | MIT License | vergecurrency/verge | correct libcap package name in build instructions |
714,092 | 12.01.2018 16:39:44 | -3,600 | 3c04d0ffd02a168a359b0e180ba292f32765b34d | Parsing UIInterface into the main loadBlockIndex.
We want update the given loading percentage with the given blocks and the all ready loaded blocks so that users know that loading status. | [
{
"change_type": "MODIFY",
"old_path": "src/init.cpp",
"new_path": "src/init.cpp",
"diff": "@@ -667,7 +667,7 @@ bool AppInit2()\nuiInterface.InitMessage(_(\"Loading block index...\"));\nprintf(\"Loading block index...\\n\");\nnStart = GetTimeMillis();\n- if (!LoadBlockIndex())\n+ if (!LoadBlockIndex... | C++ | MIT License | vergecurrency/verge | Parsing UIInterface into the main loadBlockIndex.
We want update the given loading percentage with the given blocks and the all ready loaded blocks so that users know that loading status. |
714,092 | 13.01.2018 11:42:37 | -3,600 | 3d193309a5e5d8931cee6505af0fed4a24ea3819 | Fixes a bug where the client could be reload because of
an empty database. | [
{
"change_type": "MODIFY",
"old_path": "src/txdb-leveldb.cpp",
"new_path": "src/txdb-leveldb.cpp",
"diff": "@@ -330,42 +330,46 @@ bool CTxDB::LoadBlockIndex(CClientUIInterface* uiInterface)\n// The block index is an in-memory structure that maps hashes to on-disk\n// locations where the contents of ... | C++ | MIT License | vergecurrency/verge | Fixes a bug where the client could be reload because of
an empty database. |
714,138 | 13.01.2018 16:28:26 | -3,600 | 01b090bf310f6a6817c95f8ca1cdb01b044e26e5 | enable test_bitcoin compilation | [
{
"change_type": "MODIFY",
"old_path": "configure.ac",
"new_path": "configure.ac",
"diff": "@@ -365,10 +365,6 @@ fi\nif test x$use_hardening != xno; then\nAX_CHECK_COMPILE_FLAG([-Wstack-protector],[HARDENED_CXXFLAGS=\"$HARDENED_CXXFLAGS -Wstack-protector\"])\nAX_CHECK_COMPILE_FLAG([-fstack-protector... | C++ | MIT License | vergecurrency/verge | enable test_bitcoin compilation |
714,138 | 13.01.2018 23:16:03 | -3,600 | 7ad7488d8611a0757200a5178ccfb4c12946e1dc | Enable tests that does not need updating | [
{
"change_type": "MODIFY",
"old_path": "src/Makefile.test.include",
"new_path": "src/Makefile.test.include",
"diff": "@@ -17,50 +17,43 @@ JSON_TEST_FILES = \\\nBUILT_SOURCES = $(JSON_TEST_FILES:.json=.json.h) $(RAW_TEST_FILES:.raw=.raw.h)\n-# test_bitcoin binary #\n-\n-# TODO: add\n+#TODO: needs upd... | C++ | MIT License | vergecurrency/verge | Enable tests that does not need updating |
714,138 | 14.01.2018 00:34:49 | -3,600 | 35576d947a9d3b4762b8979d1298214c70233b0c | renaming to verge | [
{
"change_type": "MODIFY",
"old_path": "Makefile.am",
"new_path": "Makefile.am",
"diff": "@@ -30,9 +30,9 @@ OSX_PACKAGING = $(OSX_DEPLOY_SCRIPT) $(OSX_FANCY_PLIST) $(OSX_INSTALLER_ICONS) \\\n$(top_srcdir)/contrib/macdeploy/DS_Store\nCOVERAGE_INFO = baseline_filtered_combined.info baseline.info block... | C++ | MIT License | vergecurrency/verge | renaming to verge |
714,138 | 14.01.2018 00:36:36 | -3,600 | 12b07f957171e590d29dfb7afa99feb9513cdb26 | Add initial stealth test | [
{
"change_type": "MODIFY",
"old_path": "src/Makefile.test.include",
"new_path": "src/Makefile.test.include",
"diff": "@@ -43,6 +43,7 @@ test_verge_SOURCES = \\\ntest/base32_tests.cpp \\\ntest/allocator_tests.cpp \\\ntest/script_P2SH_tests.cpp \\\n+ test/stealth_tests.cpp \\\n$(JSON_TEST_FILES) $(RAW... | C++ | MIT License | vergecurrency/verge | Add initial stealth test |
714,138 | 14.01.2018 16:09:01 | -3,600 | fc1ed4ca11dc0f5422f6781ad653b6f99355274b | output test-suite log after each build | [
{
"change_type": "MODIFY",
"old_path": "building/linux/build.sh",
"new_path": "building/linux/build.sh",
"diff": "./autogen.sh\n./configure --with-gui=qt5\nmake check\n+\n+# For debugging purposes\n+cat src/test-suite.log\n"
},
{
"change_type": "MODIFY",
"old_path": "building/mac/build.s... | C++ | MIT License | vergecurrency/verge | output test-suite log after each build |
714,137 | 14.01.2018 12:41:45 | 28,800 | 2af178e016285b3faf635a72c61ba5d7e8a16545 | (fix): Added libevent brew installation for mac building of requirements | [
{
"change_type": "MODIFY",
"old_path": "building/mac/requirements.sh",
"new_path": "building/mac/requirements.sh",
"diff": "@@ -5,7 +5,7 @@ brew uninstall qt5\nbrew install boost@1.60 pkg-config automake\n# Install some deps\n-brew install qt@5.5 protobuf miniupnpc openssl qrencode berkeley-db4 zlib... | C++ | MIT License | vergecurrency/verge | (fix): Added libevent brew installation for mac building of requirements |
714,131 | 16.01.2018 05:27:10 | -3,600 | cb76a9a43e6403e70b3b467cde49bf9a15c3f5e1 | filter out unconfirmed txes from getbalance and getinfo | [
{
"change_type": "MODIFY",
"old_path": "src/rpcwallet.cpp",
"new_path": "src/rpcwallet.cpp",
"diff": "@@ -593,6 +593,7 @@ Value getbalance(const Array& params, bool fHelp)\nnBalance -= r.second;\nnBalance -= allFee;\nnBalance += allGeneratedMature;\n+ nBalance -= allGeneratedImmature;\n}\nreturn Val... | C++ | MIT License | vergecurrency/verge | filter out unconfirmed txes from getbalance and getinfo |
714,092 | 17.01.2018 00:02:50 | -3,600 | 2a1a36cb3a9be4a03547b2c3a67cf3ef756386c2 | Add buttons to automatically add X percent of the current balance | [
{
"change_type": "MODIFY",
"old_path": "src/qt/forms/sendcoinsentry.ui",
"new_path": "src/qt/forms/sendcoinsentry.ui",
"diff": "</property>\n</widget>\n</item>\n+ <item row=\"5\" column=\"1\">\n+ <layout class=\"QGridLayout\" name=\"gridLayoutAmount\">\n+ <property name=\"spacing\">\n+ <number>12</n... | C++ | MIT License | vergecurrency/verge | Add buttons to automatically add X percent of the current balance |
714,092 | 17.01.2018 00:11:15 | -3,600 | 2d0728d2167a68198670a6ba7022ee4ed3fc6a18 | Adding a calculation method to divide the current balance into splits like 25% or 50% etc. | [
{
"change_type": "MODIFY",
"old_path": "src/qt/walletmodel.cpp",
"new_path": "src/qt/walletmodel.cpp",
"diff": "#include \"walletdb.h\" // for BackupWallet\n#include \"base58.h\"\n#include \"smessage.h\"\n+#include \"util.h\"\n#include <QSet>\n#include <QTimer>\n@@ -52,6 +53,23 @@ qint64 WalletModel... | C++ | MIT License | vergecurrency/verge | Adding a calculation method to divide the current balance into splits like 25% or 50% etc. |
714,135 | 17.01.2018 00:18:52 | -3,600 | df27717bf3db9d954694136e505770ca5342dc65 | Fix centos7 docker file
Added the latest packages needed to build the current version. | [
{
"change_type": "MODIFY",
"old_path": "contrib/docker/centos7/Dockerfile",
"new_path": "contrib/docker/centos7/Dockerfile",
"diff": "@@ -5,7 +5,7 @@ MAINTAINER Mike Kinney <mike.kinney@gmail.com>\nRUN yum upgrade -y\nRUN yum install -y wget\nRUN yum install -y epel-release\n-RUN yum install -y auto... | C++ | MIT License | vergecurrency/verge | Fix centos7 docker file
Added the latest packages needed to build the current version. |
714,135 | 17.01.2018 01:12:42 | -3,600 | 698e0311d68762f7fb3b7962f80233283a077b6c | Fix fedora23 docker file
Added the latest packages needed to build the current version. Removed
manual Protobuf build and instead added package from repo. | [
{
"change_type": "MODIFY",
"old_path": "contrib/docker/fedora23/Dockerfile",
"new_path": "contrib/docker/fedora23/Dockerfile",
"diff": "@@ -2,28 +2,12 @@ FROM fedora:23\nMAINTAINER Mike Kinney <mike.kinney@gmail.com>\n-# TODO: change from yum to dnf\n-RUN yum upgrade -y\n-RUN yum install -y wget\n-R... | C++ | MIT License | vergecurrency/verge | Fix fedora23 docker file
Added the latest packages needed to build the current version. Removed
manual Protobuf build and instead added package from repo. |
714,135 | 17.01.2018 01:23:22 | -3,600 | 9d18526306d1af96855c7bda82f68f12e4f568c3 | Added fedora27 docker file based on fedora23
Probably cannot be used for redistribution since built with incompatible
berkelydb configure settings. | [
{
"change_type": "ADD",
"old_path": null,
"new_path": "contrib/docker/fedora27/Dockerfile",
"diff": "+FROM fedora:27\n+\n+MAINTAINER Blpoing <blpoing@users.noreply.github.com>\n+\n+RUN dnf upgrade -y\n+RUN dnf install -y autoconf automake gcc-c++ libdb4-cxx libdb4-cxx-devel boost-devel openssl-devel... | C++ | MIT License | vergecurrency/verge | Added fedora27 docker file based on fedora23
Probably cannot be used for redistribution since built with incompatible
berkelydb configure settings. |
714,138 | 17.01.2018 11:30:38 | -3,600 | 909fa069e5efdb40084404ce946f508153d70bf9 | Fix wallet lock problem | [
{
"change_type": "MODIFY",
"old_path": "src/qt/bitcoingui.cpp",
"new_path": "src/qt/bitcoingui.cpp",
"diff": "@@ -72,6 +72,7 @@ BitcoinGUI::BitcoinGUI(QWidget *parent):\nwalletModel(0),\nencryptWalletAction(0),\nunlockWalletAction(0),\n+ lockWalletAction(0),\nchangePassphraseAction(0),\naboutQtActio... | C++ | MIT License | vergecurrency/verge | Fix wallet lock problem |
714,098 | 18.01.2018 19:34:59 | 18,000 | 56b0e0a622141dd8e5702eeff2919acd27f55f8c | hard fork
at block | [
{
"change_type": "MODIFY",
"old_path": "src/main.cpp",
"new_path": "src/main.cpp",
"diff": "@@ -568,8 +568,13 @@ bool CTransaction::CheckTransaction() const\nif (txout.IsEmpty() && !IsCoinBase() && !IsCoinStake())\nreturn DoS(100, error(\"CTransaction::CheckTransaction() : txout empty for user trans... | C++ | MIT License | vergecurrency/verge | hard fork
at block 1824150 |
714,098 | 18.01.2018 22:06:11 | 18,000 | f70b100df3a71d57824d824b3512887d5693e7e0 | picked too many cherries
heh. | [
{
"change_type": "MODIFY",
"old_path": "src/main.cpp",
"new_path": "src/main.cpp",
"diff": "@@ -568,13 +568,7 @@ bool CTransaction::CheckTransaction() const\nif (txout.IsEmpty() && !IsCoinBase() && !IsCoinStake())\nreturn DoS(100, error(\"CTransaction::CheckTransaction() : txout empty for user trans... | C++ | MIT License | vergecurrency/verge | picked too many cherries
heh. |
714,138 | 22.01.2018 00:59:37 | -3,600 | 1a428a79db1b51642be4306ee64f3b306745dcf4 | Add donate option | [
{
"change_type": "MODIFY",
"old_path": "src/qt/forms/sendcoinsentry.ui",
"new_path": "src/qt/forms/sendcoinsentry.ui",
"diff": "</property>\n</widget>\n</item>\n+ <item>\n+ <widget class=\"QPushButton\" name=\"donateButton\">\n+ <property name=\"toolTip\">\n+ <string>Support the development</string>... | C++ | MIT License | vergecurrency/verge | Add donate option |
714,138 | 22.01.2018 10:30:39 | -3,600 | db72589ff9983d50781f18494d748caba2b38947 | Add message to notify user of donation address being filled | [
{
"change_type": "MODIFY",
"old_path": "src/qt/sendcoinsentry.cpp",
"new_path": "src/qt/sendcoinsentry.cpp",
"diff": "@@ -103,6 +103,11 @@ void SendCoinsEntry::on_donateButton_clicked()\nQString addr = \"DDd1pVWr8PPAw1z7DRwoUW6maWh5SsnCcp\";\nui->payTo->setText(addr);\nsetFocus();\n+ QMessageBox::in... | C++ | MIT License | vergecurrency/verge | Add message to notify user of donation address being filled |
714,098 | 22.01.2018 16:30:47 | 18,000 | d0b064d647abfdf73a680a74aba36faf5906a80b | fix pushback | [
{
"change_type": "MODIFY",
"old_path": "src/wallet.cpp",
"new_path": "src/wallet.cpp",
"diff": "@@ -1950,8 +1950,8 @@ bool CWallet::CreateStealthTransaction(CScript scriptPubKey, int64_t nValue, std\nCScript scriptP = CScript() << OP_RETURN << P;\nif (narr.size() > 0) {\nscriptP = scriptP << OP_RETU... | C++ | MIT License | vergecurrency/verge | fix pushback |
714,138 | 23.01.2018 10:58:49 | -3,600 | 4b774dbaae26bbf0a9e746f19e7e6266c0d71f50 | Fix spinbox input issue | [
{
"change_type": "MODIFY",
"old_path": "src/qt/bitcoinamountfield.cpp",
"new_path": "src/qt/bitcoinamountfield.cpp",
"diff": "@@ -131,6 +131,11 @@ void BitcoinAmountField::setValue(qint64 value)\nsetText(BitcoinUnits::format(currentUnit, value));\n}\n+void BitcoinAmountField::setValueWithoutComma(qi... | C++ | MIT License | vergecurrency/verge | Fix spinbox input issue |
714,131 | 23.01.2018 21:43:02 | -3,600 | d458840551d016e82bcff998fc2a5f2ca8a26c18 | additional check for stealth tx switch block | [
{
"change_type": "MODIFY",
"old_path": "src/main.cpp",
"new_path": "src/main.cpp",
"diff": "@@ -2329,13 +2329,13 @@ bool CBlock::AcceptBlock()\n}\n}\n- // Reject block.nVersion not BLOCK_VERSION_DEFAULT or BLOCK_VERSION_GROESTL or BLOCK_VERSION_SHA256D and is not genesis block\n- if (nVersion != (BL... | C++ | MIT License | vergecurrency/verge | additional check for stealth tx switch block |
714,098 | 23.01.2018 22:43:01 | 18,000 | 2cae3f9a49c805815861c2d91d777e1881fbed3d | add post-fork checkpoint | [
{
"change_type": "MODIFY",
"old_path": "src/checkpoints.cpp",
"new_path": "src/checkpoints.cpp",
"diff": "@@ -46,6 +46,7 @@ namespace Checkpoints\n( 1000000, uint256(\"0x000000000049eaba3d6c29d9f45bc2a944b46eec005e2b038f1ee924f2f9c029\"))\n( 1100000, uint256(\"0xc766387a2e0cd6af995ea432518614824fe31... | C++ | MIT License | vergecurrency/verge | add post-fork checkpoint |
714,091 | 24.01.2018 14:26:20 | 18,000 | 57f09dd6a645f6be585433b9c4ddbdb20d6920fb | Update go.sh
go.sh: ./configure: not found, Ubuntu was skiping line to run ./autogen.sh which was causing the ./configure error. changed code to install file accordingly. Also added missing dependencies and cleaned up list. | [
{
"change_type": "MODIFY",
"old_path": "go.sh",
"new_path": "go.sh",
"diff": "@@ -54,17 +54,21 @@ sudo apt-get -y install libcanberra-gtk-module\n# Dont need to check if bd is already installed, will override or pass by\n#results=$(find /usr/ -name libdb_cxx.so)\n#if [ -z $results ]; then\n-sudo apt... | C++ | MIT License | vergecurrency/verge | Update go.sh
go.sh: ./configure: not found, Ubuntu was skiping line to run ./autogen.sh which was causing the ./configure error. changed code to install file accordingly. Also added missing dependencies and cleaned up list. |
714,131 | 24.01.2018 23:30:37 | -3,600 | 2517c4101e9be3ea84a0fdee804496f03ccef1c7 | added flag for getinfo to include unconfirmed balance | [
{
"change_type": "MODIFY",
"old_path": "src/bitcoinrpc.cpp",
"new_path": "src/bitcoinrpc.cpp",
"diff": "@@ -1188,6 +1188,7 @@ Array RPCConvertValues(const std::string &strMethod, const std::vector<std::stri\nif (strMethod == \"getblock\" && n > 1) ConvertTo<bool>(params[1]);\nif (strMethod == \"getb... | C++ | MIT License | vergecurrency/verge | added flag for getinfo to include unconfirmed balance |
714,091 | 27.01.2018 11:17:20 | 18,000 | caefc39e6d14b48d2f31ad7f39c1bb38d46eff3a | update linux install "Easy Way"
added the title back to the "easy way" and Added notes to remind users to ensure permissions are set up on the default user to do this install. | [
{
"change_type": "MODIFY",
"old_path": "README.md",
"new_path": "README.md",
"diff": "@@ -150,6 +150,10 @@ You can also check out this [Linux Wallet Video Tutorial](https://www.youtube.co\n## Developer Notes\n+The Easy Method:\n+\n+> **Note**: Sometimes linux user permissions are not set up properly... | C++ | MIT License | vergecurrency/verge | update linux install "Easy Way"
added the title back to the "easy way" and Added notes to remind users to ensure permissions are set up on the default user to do this install. |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.