aboutsummaryrefslogtreecommitdiff
path: root/src/bitcoin-tx.cpp
diff options
context:
space:
mode:
authorAndrew Chow <achow101-github@achow101.com>2019-06-06 16:31:31 +0200
committerAndrew Chow <achow101-github@achow101.com>2019-07-09 15:28:41 -0400
commitc7797ec65544bd23a2e571b2892e1bf512f2a485 (patch)
treed473c0d165c5fda861811ee0403f8a6ca2b0c846 /src/bitcoin-tx.cpp
parent1b699a5083b435c2b79f3951f94ac9f967d24f6c (diff)
downloadbitcoin-c7797ec65544bd23a2e571b2892e1bf512f2a485.tar.xz
Remove CKeyStore and squash into CBasicKeyStore
Diffstat (limited to 'src/bitcoin-tx.cpp')
-rw-r--r--src/bitcoin-tx.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bitcoin-tx.cpp b/src/bitcoin-tx.cpp
index 933b34744d..75776727a6 100644
--- a/src/bitcoin-tx.cpp
+++ b/src/bitcoin-tx.cpp
@@ -631,7 +631,7 @@ static void MutateTxSign(CMutableTransaction& tx, const std::string& flagStr)
}
}
- const CKeyStore& keystore = tempKeystore;
+ const CBasicKeyStore& keystore = tempKeystore;
bool fHashSingle = ((nHashType & ~SIGHASH_ANYONECANPAY) == SIGHASH_SINGLE);