Skip to content

Commit

Permalink
Rename src/script/zcashconsensus.* -> src/script/zcash_script.*
Browse files Browse the repository at this point in the history
  • Loading branch information
str4d committed Aug 11, 2020
1 parent e5300f8 commit 0368fb5
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -590,7 +590,7 @@ libzcash_a_LDFLAGS = $(AM_LDFLAGS)

# zcashconsensus library #
if BUILD_BITCOIN_LIBS
include_HEADERS = script/zcashconsensus.h
include_HEADERS = script/zcash_script.h
libzcashconsensus_la_SOURCES = \
crypto/hmac_sha512.cpp \
crypto/ripemd160.cpp \
Expand All @@ -600,7 +600,7 @@ libzcashconsensus_la_SOURCES = \
hash.cpp \
primitives/transaction.cpp \
pubkey.cpp \
script/zcashconsensus.cpp \
script/zcash_script.cpp \
script/interpreter.cpp \
script/script.cpp \
uint256.cpp \
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
// Distributed under the MIT software license, see the accompanying
// file COPYING or https://www.opensource.org/licenses/mit-license.php .

#include "zcashconsensus.h"
#include "zcash_script.h"

#include "consensus/upgrades.h"
#include "primitives/transaction.h"
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion src/test/script_tests.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
#include "test/test_bitcoin.h"

#if defined(HAVE_CONSENSUS_LIB)
#include "script/zcashconsensus.h"
#include "script/zcash_script.h"
#endif

#include <fstream>
Expand Down

0 comments on commit 0368fb5

Please sign in to comment.