diff options
| author | Andrew Chow <[email protected]> | 2019-06-06 16:33:23 +0200 |
|---|---|---|
| committer | Andrew Chow <[email protected]> | 2019-07-09 16:20:18 -0400 |
| commit | d9becff4e13da8e182631baa79b9794c03d44434 (patch) | |
| tree | 8b793f84bd72bd11b9753a1591f811fefafe1da2 /src/wallet/test/wallet_tests.cpp | |
| parent | Move HaveKey static function from keystore to rpcwallet where it is used (diff) | |
| download | discoin-d9becff4e13da8e182631baa79b9794c03d44434.tar.xz discoin-d9becff4e13da8e182631baa79b9794c03d44434.zip | |
scripted-diff: rename CBasicKeyStore to FillableSigningProvider
-BEGIN VERIFY SCRIPT-
git grep -l "CBasicKeyStore" | xargs sed -i -e 's/CBasicKeyStore/FillableSigningProvider/g'
-END VERIFY SCRIPT-
Diffstat (limited to 'src/wallet/test/wallet_tests.cpp')
| -rw-r--r-- | src/wallet/test/wallet_tests.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wallet/test/wallet_tests.cpp b/src/wallet/test/wallet_tests.cpp index ef95d0544..cbb05596b 100644 --- a/src/wallet/test/wallet_tests.cpp +++ b/src/wallet/test/wallet_tests.cpp @@ -488,7 +488,7 @@ static size_t CalculateNestedKeyhashInputSize(bool use_max_sig) CScript script_pubkey = CScript() << OP_HASH160 << std::vector<unsigned char>(script_id.begin(), script_id.end()) << OP_EQUAL; // Add inner-script to key store and key to watchonly - CBasicKeyStore keystore; + FillableSigningProvider keystore; keystore.AddCScript(inner_script); keystore.AddKeyPubKey(key, pubkey); |