diff options
author | Pieter Wuille <pieter.wuille@gmail.com> | 2014-04-28 12:20:15 +0200 |
---|---|---|
committer | Pieter Wuille <pieter.wuille@gmail.com> | 2014-06-21 19:47:42 +0200 |
commit | 13b5dfef64bbb77d583b2acc59e2b33f89645308 (patch) | |
tree | 87bcc5b35a5b2dda9fd187dea84d3c01def32744 /src/Makefile.am | |
parent | 1cc344ce42d8dddd6356c89ef3ceb58418676816 (diff) |
Move crypto implementations to src/crypto/
Diffstat (limited to 'src/Makefile.am')
-rw-r--r-- | src/Makefile.am | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/Makefile.am b/src/Makefile.am index 67b069bde1..bc65119a92 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -75,8 +75,8 @@ BITCOIN_CORE_H = \ rpcserver.h \ script.h \ serialize.h \ - sha2.h \ - sha1.h \ + crypto/sha2.h \ + crypto/sha1.h \ sync.h \ threadsafety.h \ tinyformat.h \ @@ -154,8 +154,8 @@ libbitcoin_common_a_SOURCES = \ protocol.cpp \ rpcprotocol.cpp \ script.cpp \ - sha1.cpp \ - sha2.cpp \ + crypto/sha1.cpp \ + crypto/sha2.cpp \ sync.cpp \ util.cpp \ version.cpp \ |