Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Change copyrights #4

Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion src/Makefile.am
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
# Copyright (c) 2013-2016 The Bitcoin Core developers
# Copyright (c) 2014-2018 The Wagerr Core developers
# Copyright (c) 2018-2022 The Dash Core developers
# Copyright (c) 2014-2018 The Wagerr 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/Makefile.bench.include
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
# Copyright (c) 2015-2016 The Bitcoin Core developers
# Copyright (c) 2014-2018 The Wagerr Core developers
# Copyright (c) 2018-2022 The Dash Core developers
# Copyright (c) 2014-2018 The Wagerr 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/Makefile.qt.include
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
# Copyright (c) 2013-2016 The Bitcoin Core developers
# Copyright (c) 2014-2018 The Wagerr Core developers
# Copyright (c) 2018-2022 The Dash Core developers
# Copyright (c) 2014-2018 The Wagerr 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/Makefile.qttest.include
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
# Copyright (c) 2013-2016 The Bitcoin Core developers
# Copyright (c) 2014-2018 The Wagerr Core developers
# Copyright (c) 2018-2022 The Dash Core developers
# Copyright (c) 2014-2018 The Wagerr 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/Makefile.test.include
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
# Copyright (c) 2013-2016 The Bitcoin Core developers
# Copyright (c) 2014-2018 The Wagerr Core developers
# Copyright (c) 2018-2022 The Dash Core developers
# Copyright (c) 2014-2018 The Wagerr developers
# Distributed under the MIT software license, see the accompanying
# file COPYING or http://www.opensource.org/licenses/mit-license.php.

Expand Down
1 change: 1 addition & 0 deletions src/arith_uint256.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
// Copyright (c) 2009-2010 Satoshi Nakamoto
// Copyright (c) 2009-2015 The Bitcoin Core developers
// Copyright (c) 2018-2022 The Dash Core developers
// Copyright (c) 2019 The ION Core developers
// Copyright (c) 2022 The Wagerr developers
// Distributed under the MIT software license, see the accompanying
Expand Down
4 changes: 2 additions & 2 deletions src/bench/block_assemble.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -27,13 +27,13 @@ static void AssembleBlock(benchmark::Bench& bench)

// Collect some loose transactions that spend the coinbases of our mined blocks
constexpr size_t NUM_BLOCKS{200};
std::array<CTransactionRef, NUM_BLOCKS - COINBASE_MATURITY + 1> txs;
std::array<CTransactionRef, NUM_BLOCKS + 101> txs;
for (size_t b{0}; b < NUM_BLOCKS; ++b) {
CMutableTransaction tx;
tx.vin.push_back(MineBlock(test_setup.m_node, SCRIPT_PUB));
tx.vin.back().scriptSig = scriptSig;
tx.vout.emplace_back(1337, SCRIPT_PUB);
if (NUM_BLOCKS - b >= COINBASE_MATURITY)
if (NUM_BLOCKS - b >= 100)
txs.at(b) = MakeTransactionRef(tx);
}
{
Expand Down
14 changes: 7 additions & 7 deletions src/bench/crypto_hash.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ static void HASH_1MB_QUARK(benchmark::Bench& bench)
uint256 hash;
std::vector<uint8_t> in(BUFFER_SIZE,0);
bench.batch(in.size()).unit("byte").minEpochIterations(10).run([&] {
hash = HashQUARK(in.begin(), in.end());
hash = HashQuark(in.begin(), in.end());
});
}

Expand Down Expand Up @@ -147,7 +147,7 @@ static void HASH_QUARK_0032b_single(benchmark::Bench& bench)
uint256 hash;
std::vector<uint8_t> in(32,0);
bench.minEpochIterations(10000).run([&] {
hash = HashQUARK(in.begin(), in.end());
hash = HashQuark(in.begin(), in.end());
});
}

Expand All @@ -156,7 +156,7 @@ static void HASH_QUARK_0080b_single(benchmark::Bench& bench)
uint256 hash;
std::vector<uint8_t> in(80,0);
bench.minEpochIterations(10000).run([&] {
hash = HashQUARK(in.begin(), in.end());
hash = HashQuark(in.begin(), in.end());
});
}

Expand All @@ -165,7 +165,7 @@ static void HASH_QUARK_0128b_single(benchmark::Bench& bench)
uint256 hash;
std::vector<uint8_t> in(128,0);
bench.minEpochIterations(10000).run([&] {
hash = HashQUARK(in.begin(), in.end());
hash = HashQuark(in.begin(), in.end());
});
}

Expand All @@ -174,7 +174,7 @@ static void HASH_QUARK_0512b_single(benchmark::Bench& bench)
uint256 hash;
std::vector<uint8_t> in(512,0);
bench.minEpochIterations(10000).run([&] {
hash = HashQUARK(in.begin(), in.end());
hash = HashQuark(in.begin(), in.end());
});
}

Expand All @@ -183,7 +183,7 @@ static void HASH_QUARK_1024b_single(benchmark::Bench& bench)
uint256 hash;
std::vector<uint8_t> in(1024,0);
bench.minEpochIterations(10000).run([&] {
hash = HashQUARK(in.begin(), in.end());
hash = HashQuark(in.begin(), in.end());
});
}

Expand All @@ -192,7 +192,7 @@ static void HASH_QUARK_2048b_single(benchmark::Bench& bench)
uint256 hash;
std::vector<uint8_t> in(2048,0);
bench.minEpochIterations(10000).run([&] {
hash = HashQUARK(in.begin(), in.end());
hash = HashQuark(in.begin(), in.end());
});
}

Expand Down
2 changes: 1 addition & 1 deletion src/bench/duplicate_inputs.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ static void DuplicateInputs(benchmark::Bench& bench)
coinbaseTx.vin[0].prevout.SetNull();
coinbaseTx.vout.resize(1);
coinbaseTx.vout[0].scriptPubKey = SCRIPT_PUB;
coinbaseTx.vout[0].nValue = GetBlockSubsidy(block.nBits, nHeight, chainparams.GetConsensus());
coinbaseTx.vout[0].nValue = GetBlockSubsidy(block.nBits, nHeight, chainparams.GetConsensus(), false, false);
coinbaseTx.vin[0].scriptSig = CScript() << nHeight << OP_0;

naughtyTx.vout.resize(1);
Expand Down
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion src/bitcoind.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ static bool AppInit(int argc, char* argv[])

util::ThreadSetInternalName("init");

// If Qt is used, parameters/wagerr.conf are parsed in qt/wagerr.cpp's main()
// If Qt is used, parameters/wagerr.conf are parsed in qt/bitcoin.cpp's main()
SetupServerArgs(node);
ArgsManager& args = *Assert(node.args);
std::string error;
Expand Down
3 changes: 2 additions & 1 deletion src/bls/bls_worker.cpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
// Copyright (c) 2018-2022 The Wagerr Core developers
// Copyright (c) 2018-2022 The Dash Core developers
// Copyright (c) 2014-2022 The Wagerr 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/coinjoin/client.cpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
// Copyright (c) 2014-2022 The Wagerr Core developers
// Copyright (c) 2018-2022 The Dash Core developers
// Copyright (c) 2014-2022 The Wagerr 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/coinjoin/options.cpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
// Copyright (c) 2021 The Wagerr Core developers
// Copyright (c) 2018-2022 The Dash Core developers
// Copyright (c) 2014-2022 The Wagerr 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/coinjoin/server.cpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
// Copyright (c) 2014-2022 The Wagerr Core developers
// Copyright (c) 2018-2022 The Dash Core developers
// Copyright (c) 2014-2022 The Wagerr 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.cpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
// Copyright (c) 2014-2021 The Wagerr Core developers
// Copyright (c) 2018-2022 The Dash Core developers
// Copyright (c) 2014-2021 The Wagerr developers
// Distributed under the MIT/X11 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/hash.h
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// Copyright (c) 2009-2010 Satoshi Nakamoto
// Copyright (c) 2009-2015 The Bitcoin Core developers
// Copyright (c) 2014-2022 The Dash Core developers
// Copyright (c) 2017-2022 The Wagerr Core developers
// Copyright (c) 2017-2022 The Wagerr 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/llmq/quorums.cpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
// Copyright (c) 2018-2022 The Wagerr Core developers
// Copyright (c) 2018-2022 The Dash Core developers
// Copyright (c) 2014-2022 The Wagerr 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.cpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
// Copyright (c) 2014-2022 The Wagerr Core developers
// Copyright (c) 2018-2022 The Dash Core developers
// Copyright (c) 2014-2022 The Wagerr developers
// Distributed under the MIT/X11 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/miner.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ std::unique_ptr<CBlockTemplate> BlockAssembler::CreateNewBlock(const CScript& sc
std::vector<std::shared_ptr<CWallet>> wallets = GetWallets();
// const SigningProvider& signingProvider = wallets.size() < 1 ? SigningProvider() : wallets[0].get()->GetSigningProvider();
const SigningProvider& signingProvider = wallets.size() < 1 ? SigningProvider() : *wallets[0]->GetSigningProvider();
if (HasWallets()) {
if (wallets.size() > 0) {
nSplitValue = (CAmount)(wallets[0]->GetStakeSplitThreshold() * COIN);
}
#else
Expand Down
3 changes: 2 additions & 1 deletion src/net.cpp
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
// Copyright (c) 2009-2010 Satoshi Nakamoto
// Copyright (c) 2009-2019 The Bitcoin Core developers
// Copyright (c) 2019 The PIVX Core developers
// Copyright (c) 2014-2022 The Wagerr Core developers
// Copyright (c) 2018-2022 The Dash Core developers
// Copyright (c) 2014-2022 The Wagerr 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/noui.cpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
// Copyright (c) 2010 Satoshi Nakamoto
// Copyright (c) 2009-2014 The Bitcoin Core developers
// Copyright (c) 2014-2022 The Wagerr Core developers
// Copyright (c) 2018-2022 The Dash Core developers
// Copyright (c) 2014-2022 The Wagerr 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/pos/rewards.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
// Copyright (c) 2020 The ION Core developers
// Copyright (c) 2021 The Wagerr Core developers
// Copyright (c) 2018-2022 The Dash Core developers
// Copyright (c) 2014-2022 The Wagerr 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/pos/rewards.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
// Copyright (c) 2020 The ION Core developers
// Copyright (c) 2021 The Wagerr Core developers
// Copyright (c) 2018-2022 The Dash Core developers
// Copyright (c) 2014-2022 The Wagerr developers
// Distributed under the MIT software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.

Expand Down
1 change: 1 addition & 0 deletions src/pos/staking-manager.cpp
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
// Copyright (c) 2018-2022 The Dash Core developers
// Copyright (c) 2019-2020 The ION Core developers
// Copyright (c) 2022 The Wagerr developers
// Distributed under the MIT/X11 software license, see the accompanying
Expand Down
1 change: 1 addition & 0 deletions src/pos/staking-manager.h
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
// Copyright (c) 2018-2022 The Dash Core developers
// Copyright (c) 2019-2020 The ION Core developers
// Copyright (c) 2022 The Wagerr developers
// Distributed under the MIT software license, see the accompanying
Expand Down
3 changes: 2 additions & 1 deletion src/qt/addressbookpage.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
// Copyright (c) 2011-2015 The Bitcoin Core developers
// Copyright (c) 2014-2022 The Wagerr Core developers
// Copyright (c) 2018-2022 The Dash Core developers
// Copyright (c) 2014-2022 The Wagerr 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/qt/appearancewidget.cpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
// Copyright (c) 2020-2021 The Wagerr Core developers
// Copyright (c) 2018-2022 The Dash Core developers
// Copyright (c) 2014-2022 The Wagerr 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/qt/askpassphrasedialog.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
// Copyright (c) 2011-2015 The Bitcoin Core developers
// Copyright (c) 2014-2021 The Wagerr Core developers
// Copyright (c) 2018-2022 The Dash Core developers
// Copyright (c) 2014-2021 The Wagerr 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/qt/wagerr.cpp → src/qt/bitcoin.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
// Copyright (c) 2011-2015 The Bitcoin Core developers
// Copyright (c) 2014-2022 The Wagerr Core developers
// Copyright (c) 2018-2022 The Dash Core developers
// Copyright (c) 2014-2022 The Wagerr developers
// Distributed under the MIT software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.

Expand Down
6 changes: 3 additions & 3 deletions src/qt/bitcoinamountfield.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@
// Distributed under the MIT software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.

#include <qt/wagerramountfield.h>
#include <qt/bitcoinamountfield.h>

#include <qt/wagerrunits.h>
#include <qt/bitcoinunits.h>
#include <qt/guiutil.h>

#include <QApplication>
Expand Down Expand Up @@ -181,7 +181,7 @@ class AmountLineEdit: public QLineEdit
void valueChanged();
};

#include <qt/wagerramountfield.moc>
#include <qt/bitcoinamountfield.moc>

BitcoinAmountField::BitcoinAmountField(QWidget *parent) :
QWidget(parent),
Expand Down
3 changes: 2 additions & 1 deletion src/qt/bitcoingui.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
// Copyright (c) 2011-2015 The Bitcoin Core developers
// Copyright (c) 2014-2022 The Wagerr Core developers
// Copyright (c) 2018-2022 The Dash Core developers
// Copyright (c) 2014-2022 The Wagerr 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/qt/clientmodel.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
// Copyright (c) 2011-2015 The Bitcoin Core developers
// Copyright (c) 2014-2022 The Wagerr Core developers
// Copyright (c) 2018-2022 The Dash Core developers
// Copyright (c) 2014-2022 The Wagerr 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/qt/guiconstants.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
// Copyright (c) 2011-2015 The Bitcoin Core developers
// Copyright (c) 2014-2021 The Wagerr Core developers
// Copyright (c) 2018-2022 The Dash Core developers
// Copyright (c) 2014-2022 The Wagerr 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/qt/guiutil.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
// Copyright (c) 2011-2015 The Bitcoin Core developers
// Copyright (c) 2014-2022 The Wagerr Core developers
// Copyright (c) 2018-2022 The Dash Core developers
// Copyright (c) 2014-2022 The Wagerr 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/qt/intro.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
// Copyright (c) 2011-2015 The Bitcoin Core developers
// Copyright (c) 2014-2022 The Wagerr Core developers
// Copyright (c) 2018-2022 The Dash Core developers
// Copyright (c) 2014-2022 The Wagerr 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/qt/openuridialog.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
// Copyright (c) 2011-2014 The Bitcoin Core developers
// Copyright (c) 2014-2022 The Wagerr Core developers
// Copyright (c) 2018-2022 The Dash Core developers
// Copyright (c) 2014-2022 The Wagerr 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/qt/optionsmodel.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
// Copyright (c) 2011-2015 The Bitcoin Core developers
// Copyright (c) 2014-2022 The Wagerr Core developers
// Copyright (c) 2018-2022 The Dash Core developers
// Copyright (c) 2014-2022 The Wagerr 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/qt/paymentserver.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
// Copyright (c) 2011-2015 The Bitcoin Core developers
// Copyright (c) 2014-2022 The Wagerr Core developers
// Copyright (c) 2018-2022 The Dash Core developers
// Copyright (c) 2014-2022 The Wagerr 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/qt/utilitydialog.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
// Copyright (c) 2011-2015 The Bitcoin Core developers
// Copyright (c) 2014-2022 The Wagerr Core developers
// Copyright (c) 2018-2022 The Dash Core developers
// Copyright (c) 2014-2022 The Wagerr 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/rpc/mining.cpp
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
// Copyright (c) 2010 Satoshi Nakamoto
// Copyright (c) 2009-2018 The Bitcoin Core developers
// Copyright (c) 2020 The ION Core developers
// Copyright (c) 2014-2022 The Wagerr Core developers
// Copyright (c) 2018-2022 The Dash Core developers
// Copyright (c) 2014-2022 The Wagerr 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/rpc/misc.cpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
// Copyright (c) 2010 Satoshi Nakamoto
// Copyright (c) 2009-2015 The Bitcoin Core developers
// Copyright (c) 2014-2022 The Wagerr Core developers
// Copyright (c) 2018-2022 The Dash Core developers
// Copyright (c) 2014-2022 The Wagerr developers
// Distributed under the MIT software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.

Expand Down
Loading