diff options
author | Anthony Towns <aj@erisian.com.au> | 2018-07-09 18:15:50 +1000 |
---|---|---|
committer | Anthony Towns <aj@erisian.com.au> | 2018-07-09 22:21:15 +1000 |
commit | 9a44db2e46af2b73e0dbaa929244161b18c15162 (patch) | |
tree | caff85feeaa6af556416c94af0dd10e33c19a954 /src/Makefile.am | |
parent | 88a15ebc8d317a6fd4851adb344ff944d497284c (diff) |
Add outputtype module
Moves OutputType into its own module
Diffstat (limited to 'src/Makefile.am')
-rw-r--r-- | src/Makefile.am | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/Makefile.am b/src/Makefile.am index 2866591e51..f058a9f447 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -135,6 +135,7 @@ BITCOIN_CORE_H = \ netbase.h \ netmessagemaker.h \ noui.h \ + outputtype.h \ policy/feerate.h \ policy/fees.h \ policy/policy.h \ @@ -265,6 +266,7 @@ libbitcoin_wallet_a_CPPFLAGS = $(AM_CPPFLAGS) $(BITCOIN_INCLUDES) libbitcoin_wallet_a_CXXFLAGS = $(AM_CXXFLAGS) $(PIE_FLAGS) libbitcoin_wallet_a_SOURCES = \ interfaces/wallet.cpp \ + outputtype.cpp \ wallet/crypter.cpp \ wallet/db.cpp \ wallet/feebumper.cpp \ |