Skip to content

Commit

Permalink
[Updated] New UI Wallet & Checkpoint
Browse files Browse the repository at this point in the history
  • Loading branch information
GoByteDev committed Nov 29, 2017
1 parent e051dea commit 90ef08b
Show file tree
Hide file tree
Showing 346 changed files with 215 additions and 116 deletions.
3 changes: 2 additions & 1 deletion COPYING
@@ -1,7 +1,8 @@
The MIT License (MIT)

Copyright (c) 2009-2016 The Bitcoin Core developers
Copyright (c) 2014-2017 The GoByte Core developers
Copyright (c) 2014-2017 The Dash Core developers
Copyright (c) 2017-2018 The GoByte Core developers

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -11,7 +11,7 @@ What is GoByte?

GoByte (GBX) is an innovative cryptocurrency. A form of digital currency secured by cryptography and issued through a decentralized and advanced mining market. Based on Dash, it's an enhanced and further developed version, featuring the masternode technology with 50% Reward, near-instant and secure payments as well as anonymous transactions. GoByte has great potential for rapid growth and expansion. Based on a total Proof of Work and Masternode system, it is accesible to everyone, it ensures a fair and stable return of investment for the Graphics Processing Units (GPUs) miners and the Masternode holders.

Additional information, wallets, specifications & roadmap: https://bitcointalk.org/index.php?topic=2414021
Additional information, wallets, specifications & roadmap: https://bitcointalk.org/index.php?topic=2442185.0


License
Expand Down
2 changes: 1 addition & 1 deletion configure.ac
Expand Up @@ -3,7 +3,7 @@ AC_PREREQ([2.60])
define(_CLIENT_VERSION_MAJOR, 0)
define(_CLIENT_VERSION_MINOR, 12)
define(_CLIENT_VERSION_REVISION, 1)
define(_CLIENT_VERSION_BUILD, 2)
define(_CLIENT_VERSION_BUILD, 3)
define(_CLIENT_VERSION_IS_RELEASE, true)
define(_COPYRIGHT_YEAR, 2017)
AC_INIT([GoByte Core],[_CLIENT_VERSION_MAJOR._CLIENT_VERSION_MINOR._CLIENT_VERSION_REVISION],[https://github.com/gobytecoin/gobyte/issues],[gobytecore])
Expand Down
3 changes: 2 additions & 1 deletion src/activemasternode.cpp
@@ -1,4 +1,5 @@
// Copyright (c) 2014-2017 The GoByte Core developers
// Copyright (c) 2014-2017 The Dash Core developers
// Copyright (c) 2017-2018 The GoByte Core developers
// Distributed under the MIT software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.

Expand Down
3 changes: 2 additions & 1 deletion src/activemasternode.h
@@ -1,4 +1,5 @@
// Copyright (c) 2014-2017 The GoByte Core developers
// Copyright (c) 2014-2017 The Dash Core developers
// Copyright (c) 2017-2018 The GoByte Core developers
// Distributed under the MIT/X11 software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.

Expand Down
3 changes: 2 additions & 1 deletion src/cachemap.h
@@ -1,4 +1,5 @@
// Copyright (c) 2014-2017 The GoByte Core developers
// Copyright (c) 2014-2017 The Dash Core developers
// Copyright (c) 2017-2018 The GoByte Core developers
// Distributed under the MIT/X11 software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.

Expand Down
3 changes: 2 additions & 1 deletion src/cachemultimap.h
@@ -1,4 +1,5 @@
// Copyright (c) 2014-2017 The GoByte Core developers
// Copyright (c) 2014-2017 The Dash Core developers
// Copyright (c) 2017-2018 The GoByte Core developers
// Distributed under the MIT/X11 software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.

Expand Down
10 changes: 6 additions & 4 deletions src/chainparams.cpp
@@ -1,6 +1,7 @@
// Copyright (c) 2010 Satoshi Nakamoto
// Copyright (c) 2009-2014 The Bitcoin Core developers
// Copyright (c) 2014-2017 The GoByte Core developers
// Copyright (c) 2014-2017 The Dash Core developers
// Copyright (c) 2017-2018 The GoByte Core developers
// Distributed under the MIT software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.

Expand Down Expand Up @@ -151,9 +152,10 @@ class CMainParams : public CChainParams {
checkpointData = (CCheckpointData) {
boost::assign::map_list_of
( 0, uint256S("0x0000033b01055cf8df90b01a14734cae92f7039b9b0e48887b4e33a469d7bc07"))
( 500, uint256S("0x00000000009d382b57dda9a0e169d1f3f6f384eff5aecbf24329457bb1b30962")),
1510930496, // * UNIX timestamp of last checkpoint block
0, // * total number of transactions between genesis and last checkpoint
( 500, uint256S("0x00000000009d382b57dda9a0e169d1f3f6f384eff5aecbf24329457bb1b30962"))
( 5500, uint256S("0x00000000002e3468a5196451755b5ff8d27cb7260a34250c98b0607eddfd91b2")),
1511813698, // * UNIX timestamp of last checkpoint block
9222, // * total number of transactions between genesis and last checkpoint
// (the tx=... number in the SetBestChain debug.log lines)
2800 // * estimated number of transactions per day after checkpoint
};
Expand Down
3 changes: 2 additions & 1 deletion src/checkpoints.cpp
@@ -1,5 +1,6 @@
// Copyright (c) 2009-2014 The Bitcoin developers
// Copyright (c) 2014-2017 The GoByte Core developers
// Copyright (c) 2014-2017 The Dash Core developers
// Copyright (c) 2017-2018 The GoByte Core developers
// Distributed under the MIT software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.

Expand Down
2 changes: 1 addition & 1 deletion src/clientversion.h
Expand Up @@ -17,7 +17,7 @@
#define CLIENT_VERSION_MAJOR 0
#define CLIENT_VERSION_MINOR 12
#define CLIENT_VERSION_REVISION 1
#define CLIENT_VERSION_BUILD 2
#define CLIENT_VERSION_BUILD 3

//! Set to true for release, false for prerelease or test build
#define CLIENT_VERSION_IS_RELEASE true
Expand Down
4 changes: 2 additions & 2 deletions src/darksend-relay.h
@@ -1,5 +1,5 @@

// Copyright (c) 2014-2017 The GoByte Core developers
// Copyright (c) 2014-2017 The Dash Core developers
// Copyright (c) 2017-2018 The GoByte Core developers
// Distributed under the MIT/X11 software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.

Expand Down
3 changes: 2 additions & 1 deletion src/darksend.cpp
@@ -1,4 +1,5 @@
// Copyright (c) 2014-2017 The GoByte Core developers
// Copyright (c) 2014-2017 The Dash Core developers
// Copyright (c) 2017-2018 The GoByte Core developers
// Distributed under the MIT/X11 software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.

Expand Down
3 changes: 2 additions & 1 deletion src/darksend.h
@@ -1,4 +1,5 @@
// Copyright (c) 2014-2017 The GoByte Core developers
// Copyright (c) 2014-2017 The Dash Core developers
// Copyright (c) 2017-2018 The GoByte Core developers
// Distributed under the MIT/X11 software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.

Expand Down
3 changes: 2 additions & 1 deletion src/drafted/governance-classes.h
@@ -1,4 +1,5 @@
// Copyright (c) 2014-2017 The GoByte Core developers
// Copyright (c) 2014-2017 The Dash Core developers
// Copyright (c) 2017-2018 The GoByte Core developers

/*
* FIELDS AND CLASSIFICATION
Expand Down
6 changes: 3 additions & 3 deletions src/drafted/governance-keys.cpp
@@ -1,5 +1,5 @@

// // Copyright (c) 2014-2017 The GoByte Core developers
// // Copyright (c) 2014-2017 The Dash Core developers
// // Copyright (c) 2017-2018 The GoByte Core developers
// // Distributed under the MIT/X11 software license, see the accompanying
// // file COPYING or http://www.opensource.org/licenses/mit-license.php.

Expand Down Expand Up @@ -42,4 +42,4 @@
// CGovernanceKey key(vecTokenized[0], vecTokenized[1]);
// vGovernanceKeys.push_back(key);
// }
// }
// }
5 changes: 3 additions & 2 deletions src/dsnotificationinterface.cpp
@@ -1,4 +1,5 @@
// Copyright (c) 2014-2017 The GoByte Core developers
// Copyright (c) 2014-2017 The Dash Core developers
// Copyright (c) 2017-2018 The GoByte Core developers
// Distributed under the MIT software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.

Expand Down Expand Up @@ -31,4 +32,4 @@ void CDSNotificationInterface::UpdatedBlockTip(const CBlockIndex *pindex)
void CDSNotificationInterface::SyncTransaction(const CTransaction &tx, const CBlock *pblock)
{
instantsend.SyncTransaction(tx, pblock);
}
}
5 changes: 3 additions & 2 deletions src/flat-database.h
@@ -1,4 +1,5 @@
// Copyright (c) 2014-2017 The GoByte Core developers
// Copyright (c) 2014-2017 The Dash Core developers
// Copyright (c) 2017-2018 The GoByte Core developers
// Distributed under the MIT/X11 software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.

Expand Down Expand Up @@ -226,4 +227,4 @@ class CFlatDB
};


#endif
#endif
3 changes: 2 additions & 1 deletion src/gobyte-cli.cpp
@@ -1,6 +1,7 @@
// Copyright (c) 2009-2010 Satoshi Nakamoto
// Copyright (c) 2009-2015 The Bitcoin Core developers
// Copyright (c) 2014-2017 The GoByte Core developers
// Copyright (c) 2014-2017 The Dash Core developers
// Copyright (c) 2017-2018 The GoByte Core developers
// Distributed under the MIT software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.

Expand Down
3 changes: 2 additions & 1 deletion src/gobyted.cpp
@@ -1,6 +1,7 @@
// Copyright (c) 2009-2010 Satoshi Nakamoto
// Copyright (c) 2009-2015 The Bitcoin Core developers
// Copyright (c) 2014-2017 The GoByte Core developers
// Copyright (c) 2014-2017 The Dash Core developers
// Copyright (c) 2017-2018 The GoByte Core developers
// Distributed under the MIT software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.

Expand Down
3 changes: 2 additions & 1 deletion src/governance-classes.cpp
@@ -1,4 +1,5 @@
// Copyright (c) 2014-2017 The GoByte Core developers
// Copyright (c) 2014-2017 The Dash Core developers
// Copyright (c) 2017-2018 The GoByte Core developers
// Distributed under the MIT/X11 software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.

Expand Down
3 changes: 2 additions & 1 deletion src/governance-classes.h
@@ -1,4 +1,5 @@
// Copyright (c) 2014-2017 The GoByte Core developers
// Copyright (c) 2014-2017 The Dash Core developers
// Copyright (c) 2017-2018 The GoByte Core developers
// Distributed under the MIT/X11 software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#ifndef GOVERNANCE_CLASSES_H
Expand Down
3 changes: 2 additions & 1 deletion src/governance-exceptions.h
@@ -1,4 +1,5 @@
// Copyright (c) 2014-2017 The GoByte Core developers
// Copyright (c) 2014-2017 The Dash Core developers
// Copyright (c) 2017-2018 The GoByte Core developers
// Distributed under the MIT/X11 software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.

Expand Down
7 changes: 4 additions & 3 deletions src/governance-misc.h
@@ -1,7 +1,8 @@
// Copyright (c) 2014-2017 The GoByte Core developers

// Copyright (c) 2014-2017 The Dash Core developers
// Copyright (c) 2017-2018 The GoByte Core developers
// Distributed under the MIT/X11 software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.

#ifndef GOVERNANCE_MISC_H
#define GOVERNANCE_MISC_H

Expand Down Expand Up @@ -34,7 +35,7 @@ class CGovernanceVote;

// /*


// */

// class CGovernanceSettings
Expand Down
3 changes: 2 additions & 1 deletion src/governance-object.cpp
@@ -1,4 +1,5 @@
// Copyright (c) 2014-2017 The GoByte Core developers
// Copyright (c) 2014-2017 The Dash Core developers
// Copyright (c) 2017-2018 The GoByte Core developers
// Distributed under the MIT/X11 software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.

Expand Down
3 changes: 2 additions & 1 deletion src/governance-object.h
@@ -1,4 +1,5 @@
// Copyright (c) 2014-2017 The GoByte Core developers
// Copyright (c) 2014-2017 The Dash Core developers
// Copyright (c) 2017-2018 The GoByte Core developers
// Distributed under the MIT/X11 software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.

Expand Down
3 changes: 2 additions & 1 deletion src/governance-vote.cpp
@@ -1,4 +1,5 @@
// Copyright (c) 2014-2017 The GoByte Core developers
// Copyright (c) 2014-2017 The Dash Core developers
// Copyright (c) 2017-2018 The GoByte Core developers
// Distributed under the MIT/X11 software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.

Expand Down
5 changes: 3 additions & 2 deletions src/governance-vote.h
@@ -1,7 +1,8 @@
// Copyright (c) 2014-2017 The GoByte Core developers

// Copyright (c) 2014-2017 The Dash Core developers
// Copyright (c) 2017-2018 The GoByte Core developers
// Distributed under the MIT/X11 software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.

#ifndef GOVERNANCE_VOTE_H
#define GOVERNANCE_VOTE_H

Expand Down
3 changes: 2 additions & 1 deletion src/governance-votedb.cpp
@@ -1,4 +1,5 @@
// Copyright (c) 2014-2017 The GoByte Core developers
// Copyright (c) 2014-2017 The Dash Core developers
// Copyright (c) 2017-2018 The GoByte Core developers
// Distributed under the MIT/X11 software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.

Expand Down
3 changes: 2 additions & 1 deletion src/governance-votedb.h
@@ -1,4 +1,5 @@
// Copyright (c) 2014-2017 The GoByte Core developers
// Copyright (c) 2014-2017 The Dash Core developers
// Copyright (c) 2017-2018 The GoByte Core developers
// Distributed under the MIT/X11 software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.

Expand Down
3 changes: 2 additions & 1 deletion src/governance.cpp
@@ -1,4 +1,5 @@
// Copyright (c) 2014-2017 The GoByte Core developers
// Copyright (c) 2014-2017 The Dash Core developers
// Copyright (c) 2017-2018 The GoByte Core developers
// Distributed under the MIT/X11 software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.

Expand Down
3 changes: 2 additions & 1 deletion src/instantx.cpp
@@ -1,4 +1,5 @@
// Copyright (c) 2014-2017 The GoByte Core developers
// Copyright (c) 2014-2017 The Dash Core developers
// Copyright (c) 2017-2018 The GoByte Core developers
// Distributed under the MIT/X11 software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.

Expand Down
4 changes: 3 additions & 1 deletion src/instantx.h
@@ -1,6 +1,8 @@
// Copyright (c) 2014-2017 The GoByte Core developers
// Copyright (c) 2014-2017 The Dash Core developers
// Copyright (c) 2017-2018 The GoByte Core developers
// Distributed under the MIT/X11 software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.

#ifndef INSTANTX_H
#define INSTANTX_H

Expand Down
3 changes: 2 additions & 1 deletion src/keepass.cpp
@@ -1,4 +1,5 @@
// Copyright (c) 2014-2017 The GoByte Core developers
// Copyright (c) 2014-2017 The Dash Core developers
// Copyright (c) 2017-2018 The GoByte Core developers
// Distributed under the MIT/X11 software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.

Expand Down
3 changes: 2 additions & 1 deletion src/main.cpp
@@ -1,6 +1,7 @@
// Copyright (c) 2009-2010 Satoshi Nakamoto
// Copyright (c) 2009-2015 The Bitcoin Core developers
// Copyright (c) 2014-2017 The GoByte Core developers
// Copyright (c) 2014-2017 The Dash Core developers
// Copyright (c) 2017-2018 The GoByte Core developers
// Distributed under the MIT software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.

Expand Down
3 changes: 2 additions & 1 deletion src/main.h
@@ -1,6 +1,7 @@
// Copyright (c) 2009-2010 Satoshi Nakamoto
// Copyright (c) 2009-2015 The Bitcoin Core developers
// Copyright (c) 2014-2017 The GoByte Core developers
// Copyright (c) 2014-2017 The Dash Core developers
// Copyright (c) 2017-2018 The GoByte Core developers
// Distributed under the MIT software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.

Expand Down
3 changes: 2 additions & 1 deletion src/masternode-payments.cpp
@@ -1,4 +1,5 @@
// Copyright (c) 2014-2017 The GoByte Core developers
// Copyright (c) 2014-2017 The Dash Core developers
// Copyright (c) 2017-2018 The GoByte Core developers
// Distributed under the MIT/X11 software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.

Expand Down
3 changes: 2 additions & 1 deletion src/masternode-payments.h
@@ -1,4 +1,5 @@
// Copyright (c) 2014-2017 The GoByte Core developers
// Copyright (c) 2014-2017 The Dash Core developers
// Copyright (c) 2017-2018 The GoByte Core developers
// Distributed under the MIT/X11 software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.

Expand Down
3 changes: 2 additions & 1 deletion src/masternode-sync.cpp
@@ -1,4 +1,5 @@
// Copyright (c) 2014-2017 The GoByte Core developers
// Copyright (c) 2014-2017 The Dash Core developers
// Copyright (c) 2017-2018 The GoByte Core developers
// Distributed under the MIT/X11 software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.

Expand Down
3 changes: 2 additions & 1 deletion src/masternode-sync.h
@@ -1,4 +1,5 @@
// Copyright (c) 2014-2017 The GoByte Core developers
// Copyright (c) 2014-2017 The Dash Core developers
// Copyright (c) 2017-2018 The GoByte Core developers
// Distributed under the MIT/X11 software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#ifndef MASTERNODE_SYNC_H
Expand Down
3 changes: 2 additions & 1 deletion src/masternode.cpp
@@ -1,4 +1,5 @@
// Copyright (c) 2014-2017 The GoByte Core developers
// Copyright (c) 2014-2017 The Dash Core developers
// Copyright (c) 2017-2018 The GoByte Core developers
// Distributed under the MIT/X11 software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.

Expand Down
3 changes: 2 additions & 1 deletion src/masternode.h
@@ -1,4 +1,5 @@
// Copyright (c) 2014-2017 The GoByte Core developers
// Copyright (c) 2014-2017 The Dash Core developers
// Copyright (c) 2017-2018 The GoByte Core developers
// Distributed under the MIT/X11 software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.

Expand Down
4 changes: 2 additions & 2 deletions src/masternodeconfig.h
@@ -1,5 +1,5 @@

// Copyright (c) 2014-2017 The GoByte Core developers
// Copyright (c) 2014-2017 The Dash Core developers
// Copyright (c) 2017-2018 The GoByte Core developers
// Distributed under the MIT/X11 software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.

Expand Down
3 changes: 2 additions & 1 deletion src/masternodeman.cpp
@@ -1,4 +1,5 @@
// Copyright (c) 2014-2017 The GoByte Core developers
// Copyright (c) 2014-2017 The Dash Core developers
// Copyright (c) 2017-2018 The GoByte Core developers
// Distributed under the MIT/X11 software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.

Expand Down
3 changes: 2 additions & 1 deletion src/masternodeman.h
@@ -1,4 +1,5 @@
// Copyright (c) 2014-2017 The GoByte Core developers
// Copyright (c) 2014-2017 The Dash Core developers
// Copyright (c) 2017-2018 The GoByte Core developers
// Distributed under the MIT/X11 software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.

Expand Down
3 changes: 2 additions & 1 deletion src/miner.cpp
@@ -1,6 +1,7 @@
// Copyright (c) 2009-2010 Satoshi Nakamoto
// Copyright (c) 2009-2015 The Bitcoin Core developers
// Copyright (c) 2014-2017 The GoByte Core developers
// Copyright (c) 2014-2017 The Dash Core developers
// Copyright (c) 2017-2018 The GoByte Core developers
// Distributed under the MIT software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.

Expand Down

0 comments on commit 90ef08b

Please sign in to comment.