Skip to content

Commit f601817

Browse files
author
limxdev
committed
Merge branch '0.9.8.x' of https://github.com/LIMXTEC/BitCore into 0.9.8.x
2 parents d385311 + e76791d commit f601817

9 files changed

Lines changed: 59 additions & 55 deletions

File tree

README.md

Lines changed: 25 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -1,35 +1,43 @@
1-
BitCore integration/staging tree
1+
Welcome to BitCore BTX
22
=====================================
33

4-
[![Build Status](https://travis-ci.org/LIMXTEC/BitCore.svg?branch=0.15)](https://travis-ci.org/LIMXTEC/BitCore)
4+
![GitHub Logo](https://i.imgur.com/jnpy4Me.jpg)
55

6-
https://bitcore.cc
6+
[ Release Notes ](https://www.reddit.com/r/bitcore_btx/comments/fsbzog/odarhom_release_notes_short_overview_first_draft/) - [ FAQ ](https://www.reddit.com/r/bitcore_btx/wiki/index/odarhom_faq) - [ Website ](https://www.bitcore.cc) - [ BitcoinTalk ](https://bitcointalk.org/index.php?topic=1883902.0)
7+
8+
[![Build Status](https://travis-ci.org/LIMXTEC/BitCore.svg?branch=0.9.8.x)](https://travis-ci.org/LIMXTEC/BitCore)
79

810
What is BitCore?
911
----------------
1012

11-
BitCore is an experimental digital currency that enables instant payments to
12-
anyone, anywhere in the world. BitCore uses peer-to-peer technology to operate
13-
with no central authority: managing transactions and issuing money are carried
14-
out collectively by the network. BitCore is also the name of open source
15-
software which enables the use of this currency.
13+
Established on 24th of April 2017, BitCore from the community for the community. BitCore has one of the lowest transaction fees on the market while possibly providing the best on-chain scaling solution in the entire crypto-sphere. Take a look at our [comparison chart](https://bitcore.cc/wp-content/uploads/2019/11/BitCoreVsAgosto2019.jpg).
14+
15+
BitCore BTX preserves and implements Bitcoin features such as SegWit, which enables advanced scaling technologies like Lightning Network. Significant differences at launch time included:
16+
17+
- Unique wallet addresses (prefixes of 2 and S and btx (BIP 173 bench32)
18+
- Command Fork System
19+
- Masternode System Dash Core
20+
- 220 Byte Datacarriersize (OP_RETURN)
21+
- Hashalgorythm Timetravel10
22+
- Bitcore Diffshield
23+
- Travis CI support
1624

1725
For more information, as well as an immediately useable, binary version of
1826
the BitCore software, see [https://bitcore.cc](https://bitcore.cc).
1927

20-
License
21-
-------
28+
Claiming for Bitcoin holders
29+
---
30+
31+
Claiming for the first snapshot (Bitcoin block #463604) ended 30th of October 2017. We made a new snapshot of the Bitcoin network on 2nd of November 2017 (Bitcoin block #492820). These ~5 million addresses are able to claim BitCore BTX for free, right now! Read how to [here](https://steemit.com/crypto-news/@xwerk/bitcore-btx-guide-the-2nd-snapshot-for-btc-hodlers-free-btx-or-how-it-works).
2232

23-
BitCore is released under the terms of the MIT license. See [COPYING](COPYING) for more
24-
information or see https://opensource.org/licenses/MIT.
2533

2634

2735

2836
Development Process
2937
-------------------
3038

3139
The `master` branch is regularly built and tested, but is not guaranteed to be
32-
completely stable. [Tags](https://github.com/LIMXTEC/bitcore/tags) are created
40+
completely stable. [Releases](https://github.com/LIMXTEC/bitcore/release) are created
3341
regularly to indicate new official, stable release versions of BitCore.
3442

3543
The contribution workflow is described in [CONTRIBUTING.md](CONTRIBUTING.md).
@@ -38,8 +46,6 @@ The developer [mailing list](https://groups.google.com/forum/#!forum/bitcore-dev
3846
should be used to discuss complicated or controversial changes before working
3947
on a patch set.
4048

41-
Developer IRC can be found on Freenode at #bitcore-dev.
42-
4349
Testing
4450
-------
4551

@@ -61,21 +67,11 @@ These tests can be run (if the [test dependencies](/test) are installed) with: `
6167

6268
The Travis CI system makes sure that every pull request is built for Windows, Linux, and OS X, and that unit/sanity tests are run automatically.
6369

64-
### Manual Quality Assurance (QA) Testing
65-
66-
Changes should be tested by somebody other than the developer who wrote the
67-
code. This is especially important for large or high-risk changes. It is useful
68-
to add a test plan to the pull request description if testing the changes is
69-
not straightforward.
70-
71-
Translations
72-
------------
73-
74-
We only accept translation fixes that are submitted through [Bitcoin Core's Transifex page](https://www.transifex.com/projects/p/bitcore/).
75-
Translations are converted to BitCore periodically.
70+
License
71+
-------
7672

77-
Translations are periodically pulled from Transifex and merged into the git repository. See the
78-
[translation process](doc/translation_process.md) for details on how this works.
73+
BitCore is released under the terms of the MIT license. See [COPYING](COPYING) for more
74+
information or see https://opensource.org/licenses/MIT.
7975

8076
**Important**: We do not accept translation changes as GitHub pull requests because the next
8177
pull from Transifex would automatically overwrite them again.

configure.ac

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
dnl require autoconf 2.60 (AS_ECHO/AS_ECHO_N)
22
AC_PREREQ([2.60])
33
define(_CLIENT_VERSION_MAJOR, 0)
4-
define(_CLIENT_VERSION_MINOR, 9)
4+
define(_CLIENT_VERSION_MINOR, 90)
55
define(_CLIENT_VERSION_REVISION, 8)
6-
define(_CLIENT_VERSION_BUILD, 6)
6+
define(_CLIENT_VERSION_BUILD, 7)
77
define(_CLIENT_VERSION_IS_RELEASE, true)
88
define(_COPYRIGHT_YEAR, 2020)
99
define(_COPYRIGHT_HOLDERS,[The %s developers])

masternode.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@ daemon="bitcored"
2727
cli_dir="/usr/local/bin"
2828
cli="bitcore-cli"
2929
ssh_port=${SSH_CLIENT##* }
30-
port=9468
31-
rpcport=9469
30+
port=8555
31+
rpcport=8556
3232
tport=19468
3333
trpcport=19469
3434
user="$name"

src/masternodeconfig.cpp

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,19 +31,23 @@ bool CMasternodeConfig::read(std::string& strErr) {
3131
if (!streamConfig2.good()) {
3232
FILE* configFile = fopen(pathConfigFile.string().c_str(), "a");
3333
if (configFile != NULL) {
34-
std::string strHeader = "# Bitcore config file v 1.0\n"
34+
std::string strHeader = "# BitCore Config File v. 1.0.1\n"
3535
"# Network Nodes\n"
3636
"addnode=seed.bitcore.biz\n"
3737
"addnode=37.120.190.76\n"
3838
"addnode=37.120.186.85\n"
3939
"addnode=188.68.39.1\n"
4040
"addnode=85.235.64.57\n"
41-
"# Masternode preparation (optional) - Note - You have to remove #\n"
41+
"addnode=46.38.243.55\n"
42+
"addnode=87.178.216.36\n"
43+
"addnode=93.192.188.220\n"
44+
"addnode=185.194.142.125\n"
45+
"# Optional: Masternode preparation (Note: Remove the # to make the Options useable)#\n"
4246
"#masternodeaddr=1.2.3.4:8555\n"
4347
"#externalip=1.2.3.4:8555\n"
4448
"#masternode=1\n"
4549
"#masternodeprivkey=yourkey\n"
46-
"# Server preparation (optional) - Note - You have to remove #\n"
50+
"# Optional: Server preparation (Note: Remove the # to make the Options useable) #\n"
4751
"#rpcuser=BitCorean\n"
4852
"#rpcpassword=mystrongpassword\n"
4953
"#rpcport=8556\n"

src/qt/bitcoingui.cpp

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -208,11 +208,11 @@ BitcoinGUI::BitcoinGUI(interfaces::Node& node, const PlatformStyle *_platformSty
208208
// BitCore
209209
connect(openWebsite1, SIGNAL(triggered()), rpcConsole, SLOT(hyperlinks_slot1()));
210210
connect(openWebsite2, SIGNAL(triggered()), rpcConsole, SLOT(hyperlinks_slot2()));
211-
connect(openWebsite3, SIGNAL(triggered()), rpcConsole, SLOT(hyperlinks_slot3()));
211+
//connect(openWebsite3, SIGNAL(triggered()), rpcConsole, SLOT(hyperlinks_slot3()));
212212
connect(openWebsite4, SIGNAL(triggered()), rpcConsole, SLOT(hyperlinks_slot4()));
213213
connect(openWebsite5, SIGNAL(triggered()), rpcConsole, SLOT(hyperlinks_slot5()));
214-
connect(openWebsite6, SIGNAL(triggered()), rpcConsole, SLOT(hyperlinks_slot6()));
215-
connect(openWebsite7, SIGNAL(triggered()), rpcConsole, SLOT(hyperlinks_slot7()));
214+
//connect(openWebsite6, SIGNAL(triggered()), rpcConsole, SLOT(hyperlinks_slot6()));
215+
//connect(openWebsite7, SIGNAL(triggered()), rpcConsole, SLOT(hyperlinks_slot7()));
216216
connect(openWebsite8, SIGNAL(triggered()), rpcConsole, SLOT(hyperlinks_slot8()));
217217
connect(openWebsite9, SIGNAL(triggered()), rpcConsole, SLOT(hyperlinks_slot9()));
218218
connect(openWebsite10, SIGNAL(triggered()), rpcConsole, SLOT(hyperlinks_slot10()));
@@ -224,7 +224,7 @@ BitcoinGUI::BitcoinGUI(interfaces::Node& node, const PlatformStyle *_platformSty
224224
//connect(Exchangesite5, SIGNAL(triggered()), rpcConsole, SLOT(hyperlinks2_slot5()));
225225
//connect(Exchangesite6, SIGNAL(triggered()), rpcConsole, SLOT(hyperlinks2_slot6()));
226226
connect(Exchangesite7, SIGNAL(triggered()), rpcConsole, SLOT(hyperlinks2_slot7()));
227-
connect(Exchangesite8, SIGNAL(triggered()), rpcConsole, SLOT(hyperlinks2_slot8()));
227+
//connect(Exchangesite8, SIGNAL(triggered()), rpcConsole, SLOT(hyperlinks2_slot8()));
228228
//connect(Exchangesite9, SIGNAL(triggered()), rpcConsole, SLOT(hyperlinks2_slot9()));
229229
//connect(Exchangesite10, SIGNAL(triggered()), rpcConsole, SLOT(hyperlinks2_slot10()));
230230

@@ -466,11 +466,11 @@ void BitcoinGUI::createActions()
466466
// BitCore
467467
openWebsite1 = new QAction(QIcon(":/icons/bitcorecc"), tr("&Bitcore.cc"), this);
468468
openWebsite2 = new QAction(QIcon(":/icons/telegram"), tr("&Telegram"), this);
469-
openWebsite3 = new QAction(QIcon(":/icons/twitter"), tr("&Twitter"), this);
469+
//openWebsite3 = new QAction(QIcon(":/icons/twitter"), tr("&Twitter"), this);
470470
openWebsite4 = new QAction(QIcon(":/icons/bitcointalk"), tr("&Bitcointalk"), this);
471471
openWebsite5 = new QAction(QIcon(":/icons/reddit"), tr("&Reddit"), this);
472-
openWebsite6 = new QAction(QIcon(":/icons/facebook"), tr("&Facebook"), this);
473-
openWebsite7 = new QAction(QIcon(":/icons/coinomi"), tr("&Coinomi"), this);
472+
//openWebsite6 = new QAction(QIcon(":/icons/facebook"), tr("&Facebook"), this);
473+
//openWebsite7 = new QAction(QIcon(":/icons/coinomi"), tr("&Coinomi"), this);
474474
openWebsite8 = new QAction(QIcon(":/icons/github"), tr("&Github"), this);
475475
openWebsite9 = new QAction(QIcon(":/icons/insightapi"), tr("&Explorer 1"), this);
476476
openWebsite10 = new QAction(QIcon(":/icons/cryptoid"), tr("&Explorer 2"), this);
@@ -482,7 +482,7 @@ void BitcoinGUI::createActions()
482482
//Exchangesite5 = new QAction(QIcon(":/icons/cryptopia"), tr("&Cryptopia"), this);
483483
//Exchangesite6 = new QAction(QIcon(":/icons/info"), tr("&Bitexlive"), this);
484484
Exchangesite7 = new QAction(QIcon(":/icons/hitbtc"), tr("&HitBTC"), this);
485-
Exchangesite8 = new QAction(QIcon(":/icons/tradesat"), tr("&Trade Satoshi"), this);
485+
//Exchangesite8 = new QAction(QIcon(":/icons/tradesat"), tr("&Trade Satoshi"), this);
486486
//Exchangesite9 = new QAction(QIcon(":/icons/info"), tr("&Mylocalcoin"), this);
487487
//Exchangesite10 = new QAction(QIcon(":/icons/cryptobridgeb"), tr("&CryptoBridge"), this);
488488
//Exchangesite10 = new QAction(QIcon(":/icons/info"), tr("&Novaexchange"), this);
@@ -581,12 +581,12 @@ void BitcoinGUI::createMenuBar()
581581
hyperlinks->addAction(openWebsite1);
582582
hyperlinks->addSeparator();
583583
hyperlinks->addAction(openWebsite2);
584-
hyperlinks->addAction(openWebsite3);
584+
//hyperlinks->addAction(openWebsite3);
585585
hyperlinks->addAction(openWebsite4);
586586
hyperlinks->addAction(openWebsite5);
587-
hyperlinks->addAction(openWebsite6);
587+
//hyperlinks->addAction(openWebsite6);
588588
hyperlinks->addSeparator();
589-
hyperlinks->addAction(openWebsite7);
589+
//hyperlinks->addAction(openWebsite7);
590590
hyperlinks->addAction(openWebsite8);
591591
hyperlinks->addAction(openWebsite9);
592592
hyperlinks->addAction(openWebsite10);
@@ -602,7 +602,7 @@ void BitcoinGUI::createMenuBar()
602602
//hyperlinks2->addAction(Exchangesite5);
603603
//hyperlinks2->addAction(Exchangesite6);
604604
hyperlinks2->addAction(Exchangesite7);
605-
hyperlinks2->addAction(Exchangesite8);
605+
//hyperlinks2->addAction(Exchangesite8);
606606
//hyperlinks2->addAction(Exchangesite9);
607607
//hyperlinks2->addAction(Exchangesite10);
608608
}

src/qt/bitcoingui.h

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -140,11 +140,11 @@ class BitcoinGUI : public QMainWindow
140140
// BitCore
141141
QAction* openWebsite1 = nullptr;
142142
QAction* openWebsite2 = nullptr;
143-
QAction* openWebsite3 = nullptr;
143+
//QAction* openWebsite3 = nullptr;
144144
QAction* openWebsite4 = nullptr;
145145
QAction* openWebsite5 = nullptr;
146-
QAction* openWebsite6 = nullptr;
147-
QAction* openWebsite7 = nullptr;
146+
//QAction* openWebsite6 = nullptr;
147+
//QAction* openWebsite7 = nullptr;
148148
QAction* openWebsite8 = nullptr;
149149
QAction* openWebsite9 = nullptr;
150150
QAction* openWebsite10 = nullptr;
@@ -156,7 +156,7 @@ class BitcoinGUI : public QMainWindow
156156
//QAction* Exchangesite5 = nullptr;
157157
//QAction* Exchangesite6 = nullptr;
158158
QAction* Exchangesite7 = nullptr;
159-
QAction* Exchangesite8 = nullptr;
159+
//QAction* Exchangesite8 = nullptr;
160160
//QAction* Exchangesite9 = nullptr;
161161
//QAction* Exchangesite10 = nullptr;
162162

src/qt/guiutil.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -423,7 +423,7 @@ void hyperlinks_slot5(){QString link1 = "https://www.reddit.com/r/bitcore_btx/";
423423
void hyperlinks_slot6(){QString link1 = "https://www.facebook.com/Bitcore.Coin/"; QDesktopServices::openUrl(QUrl(link1, QUrl::TolerantMode));}
424424
void hyperlinks_slot7(){QString link1 = "https://coinomi.com/"; QDesktopServices::openUrl(QUrl(link1, QUrl::TolerantMode));}
425425
void hyperlinks_slot8(){QString link1 = "https://github.com/LIMXTEC/BitCore"; QDesktopServices::openUrl(QUrl(link1, QUrl::TolerantMode));}
426-
void hyperlinks_slot9(){QString link1 = "https://insight.bitcore.cc/"; QDesktopServices::openUrl(QUrl(link1, QUrl::TolerantMode));}
426+
void hyperlinks_slot9(){QString link1 = "https://explorer.bitcore.cc/"; QDesktopServices::openUrl(QUrl(link1, QUrl::TolerantMode));}
427427
void hyperlinks_slot10(){QString link1 = "https://chainz.cryptoid.info/btx/"; QDesktopServices::openUrl(QUrl(link1, QUrl::TolerantMode));}
428428

429429
// BitCore exchanges

src/qt/intro.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ static const uint64_t GB_BYTES = 1000000000LL;
2626
/* Minimum free space (in GB) needed for data directory */
2727
constexpr uint64_t BLOCK_CHAIN_SIZE = 1;
2828
/* Minimum free space (in GB) needed for data directory when pruned; Does not include prune target */
29-
static const uint64_t CHAIN_STATE_SIZE = 1;
29+
static const uint64_t CHAIN_STATE_SIZE = 3;
3030
/* Total required space (in GB) depending on user choice (prune, not prune) */
3131
static uint64_t requiredSpace;
3232

src/qt/splashscreen.cpp

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,9 +43,13 @@ SplashScreen::SplashScreen(interfaces::Node& node, Qt::WindowFlags f, const Netw
4343
// define text to place
4444
QString titleText = tr("BitCore");
4545
QString versionText = QString("Version %1").arg(QString::fromStdString(FormatFullVersion()));
46-
QString copyrightText = QString::fromUtf8(CopyrightHolders(strprintf("\xc2\xA9 %u-%u ", 2011, COPYRIGHT_YEAR)).c_str());
46+
versionText = versionText.rightJustified(25, '.', true);
47+
QString copyrightText = "Welcome to Odarhom\nBitcore-Qt Wallet\n\nOfficial website\nbitcore.cc";
4748
QString titleAddText = networkStyle->getTitleAddText();
4849

50+
//QString versionText = QString("Version %1").arg(QString::fromStdString(FormatFullVersion()));
51+
//QString copyrightText = QString::fromUtf8(CopyrightHolders(strprintf("\xc2\xA9 %u-%u ", 2011, COPYRIGHT_YEAR)).c_str());
52+
4953
QString font = QApplication::font().toString();
5054

5155
// create a bitmap according to device pixelratio

0 commit comments

Comments
 (0)