From bf80b6d8432830a2914baf8048f6e3b358f76b66 Mon Sep 17 00:00:00 2001 From: Patrick Lodder Date: Sun, 25 Feb 2024 13:09:52 -0500 Subject: [PATCH] add missing copyright headers --- src/crypto/scrypt.h | 5 +++++ src/qt/verticallabel.cpp | 4 ++++ src/qt/verticallabel.h | 4 ++++ src/test/scrypt_tests.cpp | 4 ++++ 4 files changed, 17 insertions(+) diff --git a/src/crypto/scrypt.h b/src/crypto/scrypt.h index 414c961bc..8552efe17 100644 --- a/src/crypto/scrypt.h +++ b/src/crypto/scrypt.h @@ -1,3 +1,8 @@ +// Copyright (c) 2011-2012 The Litecoin Core developers +// Copyright (c) 2013-2021 The Dogecoin Core developers +// Distributed under the MIT software license, see the accompanying +// file COPYING or http://www.opensource.org/licenses/mit-license.php. + #ifndef BITCOIN_CRYPTO_SCRYPT_H #define BITCOIN_CRYPTO_SCRYPT_H #include diff --git a/src/qt/verticallabel.cpp b/src/qt/verticallabel.cpp index 44594a2b1..a9de0e57f 100644 --- a/src/qt/verticallabel.cpp +++ b/src/qt/verticallabel.cpp @@ -1,3 +1,7 @@ +// Copyright (c) 2014 The Dogecoin Core developers +// Distributed under the MIT software license, see the accompanying +// file COPYING or http://www.opensource.org/licenses/mit-license.php. + #include "verticallabel.h" #include diff --git a/src/qt/verticallabel.h b/src/qt/verticallabel.h index dd0c65c28..e77c0ff1c 100644 --- a/src/qt/verticallabel.h +++ b/src/qt/verticallabel.h @@ -1,3 +1,7 @@ +// Copyright (c) 2014 The Dogecoin Core developers +// Distributed under the MIT software license, see the accompanying +// file COPYING or http://www.opensource.org/licenses/mit-license.php. + #ifndef VERTICALLABEL_H #define VERTICALLABEL_H diff --git a/src/test/scrypt_tests.cpp b/src/test/scrypt_tests.cpp index 9c52aaafc..d01317163 100644 --- a/src/test/scrypt_tests.cpp +++ b/src/test/scrypt_tests.cpp @@ -1,3 +1,7 @@ +// Copyright (c) 2011-2014 The Litecoin Core developers +// Copyright (c) 2014 The Dogecoin Core developers +// Distributed under the MIT software license, see the accompanying +// file COPYING or http://www.opensource.org/licenses/mit-license.php. #include #include "crypto/scrypt.h"