-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
TestNet First Release
- Loading branch information
Showing
3,243 changed files
with
877,446 additions
and
0 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
src/clientversion.cpp export-subst |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
<!--- Remove sections that do not apply --> | ||
|
||
This issue tracker is only for technical issues related to bitcoin-core. | ||
|
||
General bitcoin questions and/or support requests and are best directed to the [Bitcoin StackExchange](https://bitcoin.stackexchange.com). | ||
|
||
For reporting security issues, please read instructions at [https://bitcoincore.org/en/contact/](https://bitcoincore.org/en/contact/). | ||
|
||
### Describe the issue | ||
|
||
### Can you reliably reproduce the issue? | ||
#### If so, please list the steps to reproduce below: | ||
1. | ||
2. | ||
3. | ||
|
||
### Expected behaviour | ||
Tell us what should happen | ||
|
||
### Actual behaviour | ||
Tell us what happens instead | ||
|
||
### Screenshots. | ||
If the issue is related to the GUI, screenshots can be added to this issue via drag & drop. | ||
|
||
### What version of bitcoin-core are you using? | ||
List the version number/commit ID, and if it is an official binary, self compiled or a distribution package such as PPA. | ||
|
||
### Machine specs: | ||
- OS: | ||
- CPU: | ||
- RAM: | ||
- Disk size: | ||
- Disk Type (HD/SDD): | ||
|
||
### Any extra information that might be useful in the debugging process. | ||
This is normally the contents of a `debug.log` or `config.log` file. Raw text or a link to a pastebin type site are preferred. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,112 @@ | ||
*.tar.gz | ||
|
||
*.exe | ||
src/bitcoin | ||
src/bitcoind | ||
src/bitcoin-cli | ||
src/bitcoin-tx | ||
src/test/test_bitcoin | ||
src/test/test_bitcoin_fuzzy | ||
src/qt/test/test_bitcoin-qt | ||
|
||
# autoreconf | ||
Makefile.in | ||
aclocal.m4 | ||
autom4te.cache/ | ||
build-aux/config.guess | ||
build-aux/config.sub | ||
build-aux/depcomp | ||
build-aux/install-sh | ||
build-aux/ltmain.sh | ||
build-aux/m4/libtool.m4 | ||
build-aux/m4/lt~obsolete.m4 | ||
build-aux/m4/ltoptions.m4 | ||
build-aux/m4/ltsugar.m4 | ||
build-aux/m4/ltversion.m4 | ||
build-aux/missing | ||
build-aux/compile | ||
build-aux/test-driver | ||
config.log | ||
config.status | ||
configure | ||
libtool | ||
src/config/bitcoin-config.h | ||
src/config/bitcoin-config.h.in | ||
src/config/stamp-h1 | ||
share/setup.nsi | ||
share/qt/Info.plist | ||
|
||
src/univalue/gen | ||
|
||
src/qt/*.moc | ||
src/qt/moc_*.cpp | ||
src/qt/forms/ui_*.h | ||
|
||
src/qt/test/moc*.cpp | ||
|
||
.deps | ||
.dirstamp | ||
.libs | ||
.*.swp | ||
*.*~* | ||
*.bak | ||
*.rej | ||
*.orig | ||
*.pyc | ||
*.o | ||
*.o-* | ||
*.patch | ||
*.a | ||
*.pb.cc | ||
*.pb.h | ||
|
||
*.log | ||
*.trs | ||
*.dmg | ||
|
||
*.json.h | ||
*.raw.h | ||
|
||
#libtool object files | ||
*.lo | ||
*.la | ||
|
||
# Compilation and Qt preprocessor part | ||
*.qm | ||
Makefile | ||
bitcoin-qt | ||
Bitcoin-Qt.app | ||
|
||
# Unit-tests | ||
Makefile.test | ||
bitcoin-qt_test | ||
src/test/buildenv.py | ||
|
||
# Resources cpp | ||
qrc_*.cpp | ||
|
||
# Mac specific | ||
.DS_Store | ||
build | ||
|
||
#lcov | ||
*.gcno | ||
*.gcda | ||
/*.info | ||
test_bitcoin.coverage/ | ||
total.coverage/ | ||
coverage_percent.txt | ||
|
||
#build tests | ||
linux-coverage-build | ||
linux-build | ||
win32-build | ||
qa/pull-tester/tests_config.py | ||
qa/cache/* | ||
|
||
!src/leveldb*/Makefile | ||
|
||
/doc/doxygen/ | ||
|
||
libbitcoinconsensus.pc | ||
contrib/devtools/split-debug.sh |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
12 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
12 |
90 changes: 90 additions & 0 deletions
90
.svn/pristine/00/0019ef5d2256a174a88e1d5b0a870a9fcb6e295e.svn-base
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,90 @@ | ||
// Copyright (c) 2011-2016 The Bitcoin Core developers | ||
// Distributed under the MIT software license, see the accompanying | ||
// file COPYING or http://www.opensource.org/licenses/mit-license.php. | ||
|
||
#ifndef BITCOIN_QT_INTRO_H | ||
#define BITCOIN_QT_INTRO_H | ||
|
||
#include <QDialog> | ||
#include <QMutex> | ||
#include <QThread> | ||
|
||
static const bool DEFAULT_CHOOSE_DATADIR = false; | ||
|
||
class FreespaceChecker; | ||
class logondlg; | ||
namespace Ui { | ||
class Intro; | ||
} | ||
|
||
/** Introduction screen (pre-GUI startup). | ||
Allows the user to choose a data directory, | ||
in which the wallet and block chain will be stored. | ||
*/ | ||
class Intro : public QDialog | ||
{ | ||
Q_OBJECT | ||
|
||
public: | ||
explicit Intro(QWidget *parent = 0); | ||
~Intro(); | ||
void setIsRecover(bool IsRecover); | ||
|
||
bool getIsRecover(); | ||
|
||
QString getDataDirectory(); | ||
void setDataDirectory(const QString &dataDir); | ||
|
||
/** | ||
* Determine data directory. Let the user choose if the current one doesn't exist. | ||
* | ||
* @returns true if a data directory was selected, false if the user cancelled the selection | ||
* dialog. | ||
* | ||
* @note do NOT call global GetDataDir() before calling this function, this | ||
* will cause the wrong path to be cached. | ||
*/ | ||
static bool pickDataDirectory(logondlg*,std::string clienttype); | ||
|
||
/** | ||
* Determine default data directory for operating system. | ||
*/ | ||
static QString getDefaultDataDirectory(); | ||
|
||
static std::string m_datapath; | ||
|
||
static std::string m_clienttype; | ||
|
||
|
||
static bool m_IsRecover;// = false; | ||
|
||
|
||
Q_SIGNALS: | ||
void requestCheck(); | ||
void stopThread(); | ||
|
||
public Q_SLOTS: | ||
void setStatus(int status, const QString &message, quint64 bytesAvailable); | ||
|
||
private Q_SLOTS: | ||
void on_dataDirectory_textChanged(const QString &arg1); | ||
void on_ellipsisButton_clicked(); | ||
void on_dataDirDefault_clicked(); | ||
void on_dataDirCustom_clicked(); | ||
|
||
private: | ||
Ui::Intro *ui; | ||
QThread *thread; | ||
QMutex mutex; | ||
bool signalled; | ||
QString pathToCheck; | ||
|
||
|
||
void startThread(); | ||
void checkPath(const QString &dataDir); | ||
QString getPathToCheck(); | ||
|
||
friend class FreespaceChecker; | ||
}; | ||
|
||
#endif // BITCOIN_QT_INTRO_H |
Oops, something went wrong.