Rename src/script/zcashconsensus.* -> src/script/zcash_script.*

This commit is contained in:
Jack Grigg 2020-08-11 21:19:16 +01:00
parent 308bb1083a
commit c5e7b84e9b
4 changed files with 4 additions and 4 deletions

View File

@ -545,7 +545,7 @@ libzcash_a_LDFLAGS = $(AM_LDFLAGS)
# zcashconsensus library # # zcashconsensus library #
if BUILD_BITCOIN_LIBS if BUILD_BITCOIN_LIBS
include_HEADERS = script/zcashconsensus.h include_HEADERS = script/zcash_script.h
libzcashconsensus_la_SOURCES = \ libzcashconsensus_la_SOURCES = \
crypto/hmac_sha512.cpp \ crypto/hmac_sha512.cpp \
crypto/ripemd160.cpp \ crypto/ripemd160.cpp \
@ -555,7 +555,7 @@ libzcashconsensus_la_SOURCES = \
hash.cpp \ hash.cpp \
primitives/transaction.cpp \ primitives/transaction.cpp \
pubkey.cpp \ pubkey.cpp \
script/zcashconsensus.cpp \ script/zcash_script.cpp \
script/interpreter.cpp \ script/interpreter.cpp \
script/script.cpp \ script/script.cpp \
uint256.cpp \ uint256.cpp \

View File

@ -3,7 +3,7 @@
// Distributed under the MIT software license, see the accompanying // Distributed under the MIT software license, see the accompanying
// file COPYING or https://www.opensource.org/licenses/mit-license.php . // file COPYING or https://www.opensource.org/licenses/mit-license.php .
#include "zcashconsensus.h" #include "zcash_script.h"
#include "consensus/upgrades.h" #include "consensus/upgrades.h"
#include "primitives/transaction.h" #include "primitives/transaction.h"

View File

@ -18,7 +18,7 @@
#include "test/test_util.h" #include "test/test_util.h"
#if defined(HAVE_CONSENSUS_LIB) #if defined(HAVE_CONSENSUS_LIB)
#include "script/zcashconsensus.h" #include "script/zcash_script.h"
#endif #endif
#include <fstream> #include <fstream>