From 609b223e90029d8e5653896f0bf91b43d1bf8ab8 Mon Sep 17 00:00:00 2001 From: Duke Leto Date: Fri, 4 Dec 2020 20:47:28 -0500 Subject: [PATCH] Hush Equihash (N,K) implementation --- src/crypto/equihash.h | 5 ++--- src/hush_defs.h | 2 +- src/{komodo_nk.h => hush_nk.h} | 0 3 files changed, 3 insertions(+), 4 deletions(-) rename src/{komodo_nk.h => hush_nk.h} (100%) diff --git a/src/crypto/equihash.h b/src/crypto/equihash.h index e98a9cb16..602b0df31 100644 --- a/src/crypto/equihash.h +++ b/src/crypto/equihash.h @@ -1,3 +1,4 @@ +// Copyright (c) 2019-2020 The Hush developers // Copyright (c) 2016 Jack Grigg // Copyright (c) 2016 The Zcash developers // Distributed under the GPLv3 software license, see the accompanying @@ -8,10 +9,8 @@ #include "crypto/sha256.h" #include "utilstrencodings.h" - #include "sodium.h" -#include "komodo_nk.h" - +#include "hush_nk.h" #include #include #include diff --git a/src/hush_defs.h b/src/hush_defs.h index 5c48da1c0..65abf28e5 100644 --- a/src/hush_defs.h +++ b/src/hush_defs.h @@ -18,7 +18,7 @@ #define KOMODO_DEFS_H #include "arith_uint256.h" #include "chain.h" -#include "komodo_nk.h" +#include "hush_nk.h" #define KOMODO_EARLYTXID_HEIGHT 100 //#define ADAPTIVEPOW_CHANGETO_DEFAULTON 1572480000 diff --git a/src/komodo_nk.h b/src/hush_nk.h similarity index 100% rename from src/komodo_nk.h rename to src/hush_nk.h