Skip to content

Commit 6f53611

Browse files
committed
Default block size and mining update
1 parent 7a321b7 commit 6f53611

File tree

598 files changed

+1127
-633
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

598 files changed

+1127
-633
lines changed

ReleaseNotes.txt

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
Release notes 4.0.1-beta
2+
3+
- Default block size updated to 200Kb to avoid any unconfirmed transactions
4+
- Mining update
5+
16
Release notes 4.0.0-beta
27

38
- Empowering XDN network security with merged mining with any CryptoNote cryptocurrency

include/BlockchainExplorerData.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Copyright (c) 2011-2016 The Cryptonote developers
2-
// Copyright (c) 2014-2016 XDN-project developers
2+
// Copyright (c) 2014-2017 XDN-project developers
33
// Distributed under the MIT/X11 software license, see the accompanying
44
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
55

include/CryptoNote.h

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,13 @@
11
// Copyright (c) 2011-2016 The Cryptonote developers
2-
// Copyright (c) 2014-2016 XDN-project developers
2+
// Copyright (c) 2014-2017 XDN-project developers
33
// Distributed under the MIT/X11 software license, see the accompanying
44
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
55

66
#pragma once
77

88
#include <vector>
99
#include <boost/variant.hpp>
10+
#include "crypto/rctTypes.h"
1011
#include "CryptoTypes.h"
1112

1213
namespace CryptoNote {
@@ -59,13 +60,18 @@ struct Transaction : public TransactionPrefix {
5960
std::vector<std::vector<Crypto::Signature>> signatures;
6061
};
6162

63+
struct RootBlockTransaction : public TransactionPrefix {
64+
std::vector<std::vector<Crypto::Signature>> signatures;
65+
rct::rctSig rctSignatures;
66+
};
67+
6268
struct RootBlock {
6369
uint8_t majorVersion;
6470
uint8_t minorVersion;
6571
Crypto::Hash previousBlockHash;
6672
uint16_t transactionCount;
6773
std::vector<Crypto::Hash> baseTransactionBranch;
68-
Transaction baseTransaction;
74+
RootBlockTransaction baseTransaction;
6975
std::vector<Crypto::Hash> blockchainBranch;
7076
};
7177

include/CryptoTypes.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Copyright (c) 2011-2016 The Cryptonote developers
2-
// Copyright (c) 2014-2016 XDN-project developers
2+
// Copyright (c) 2014-2017 XDN-project developers
33
// Distributed under the MIT/X11 software license, see the accompanying
44
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
55

include/IBlockchainExplorer.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Copyright (c) 2011-2016 The Cryptonote developers
2-
// Copyright (c) 2014-2016 XDN-project developers
2+
// Copyright (c) 2014-2017 XDN-project developers
33
// Distributed under the MIT/X11 software license, see the accompanying
44
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
55

include/INode.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Copyright (c) 2011-2016 The Cryptonote developers
2-
// Copyright (c) 2014-2016 XDN-project developers
2+
// Copyright (c) 2014-2017 XDN-project developers
33
// Distributed under the MIT/X11 software license, see the accompanying
44
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
55

include/IObservable.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Copyright (c) 2011-2016 The Cryptonote developers
2-
// Copyright (c) 2014-2016 XDN-project developers
2+
// Copyright (c) 2014-2017 XDN-project developers
33
// Distributed under the MIT/X11 software license, see the accompanying
44
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
55

include/IStreamSerializable.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Copyright (c) 2011-2016 The Cryptonote developers
2-
// Copyright (c) 2014-2016 XDN-project developers
2+
// Copyright (c) 2014-2017 XDN-project developers
33
// Distributed under the MIT/X11 software license, see the accompanying
44
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
55

include/ITransaction.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Copyright (c) 2011-2016 The Cryptonote developers
2-
// Copyright (c) 2014-2016 XDN-project developers
2+
// Copyright (c) 2014-2017 XDN-project developers
33
// Distributed under the MIT/X11 software license, see the accompanying
44
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
55

include/ITransfersContainer.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Copyright (c) 2011-2016 The Cryptonote developers
2-
// Copyright (c) 2014-2016 XDN-project developers
2+
// Copyright (c) 2014-2017 XDN-project developers
33
// Distributed under the MIT/X11 software license, see the accompanying
44
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
55

0 commit comments

Comments
 (0)