diff options
| author | Pieter Wuille <[email protected]> | 2014-04-12 23:34:00 +0200 |
|---|---|---|
| committer | Pieter Wuille <[email protected]> | 2014-04-22 09:30:21 +0200 |
| commit | b58be132c994b6f9b25cb4a702186ef96104953f (patch) | |
| tree | b3e64d56100eec405887f2a72f52ac7b8003d357 /src/Makefile.am | |
| parent | Merge pull request #4047 (diff) | |
| download | discoin-b58be132c994b6f9b25cb4a702186ef96104953f.tar.xz discoin-b58be132c994b6f9b25cb4a702186ef96104953f.zip | |
Replace DecodeBase58/EncodeBase58 with direct implementation.
This removes the bignum/OpenSSL dependency.
The base58 transformation code is also moved to a separate .cpp file.
Diffstat (limited to 'src/Makefile.am')
| -rw-r--r-- | src/Makefile.am | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/Makefile.am b/src/Makefile.am index c725c4f1c..b037ac2c9 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -121,6 +121,7 @@ libbitcoin_wallet_a_SOURCES = \ $(BITCOIN_CORE_H) libbitcoin_common_a_SOURCES = \ + base58.cpp \ allocators.cpp \ chainparams.cpp \ core.cpp \ |