Age | Commit message (Collapse) | Author | |
---|---|---|---|
2018-02-16 | scripted-diff: validateaddress to getaddressinfo in tests | Andrew Chow | |
Change all instances of validateaddress to getaddressinfo since it seems that no test actually uses validateaddress for actually validating addresses. -BEGIN VERIFY SCRIPT- find ./test/functional -path '*py' -not -path ./test/functional/wallet_disable.py -not -path ./test/functional/rpc_deprecated.py -not -path ./test/functional/wallet_address_types.py -exec sed -i'' -e 's/validateaddress/getaddressinfo/g' {} \; -END VERIFY SCRIPT- | |||
2018-02-16 | Create getaddressinfo RPC and deprecate parts of validateaddress | Andrew Chow | |
Moves the parts of validateaddress which require the wallet into getaddressinfo which is part of the wallet RPCs. Mark those parts of validateaddress which require the wallet as deprecated. Validateaddress will call getaddressinfo for the data that both share for right now. Moves IsMine functions to libbitcoin_common and then links libbitcoin_wallet before libbitcoin_common in order to prevent linker errors since IsMine is no longer used in libbitcoin_server. | |||
2018-01-25 | [tests] Rename wallet_* functional tests. | Anthony Towns | |