mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-06-29 18:20:58 +02:00
scripted-diff: rename CBasicKeyStore to FillableSigningProvider
-BEGIN VERIFY SCRIPT- git grep -l "CBasicKeyStore" | xargs sed -i -e 's/CBasicKeyStore/FillableSigningProvider/g' -END VERIFY SCRIPT-
This commit is contained in:
@ -557,7 +557,7 @@ static void MutateTxSign(CMutableTransaction& tx, const std::string& flagStr)
|
||||
|
||||
if (!registers.count("privatekeys"))
|
||||
throw std::runtime_error("privatekeys register variable must be set.");
|
||||
CBasicKeyStore tempKeystore;
|
||||
FillableSigningProvider tempKeystore;
|
||||
UniValue keysObj = registers["privatekeys"];
|
||||
|
||||
for (unsigned int kidx = 0; kidx < keysObj.size(); kidx++) {
|
||||
@ -631,7 +631,7 @@ static void MutateTxSign(CMutableTransaction& tx, const std::string& flagStr)
|
||||
}
|
||||
}
|
||||
|
||||
const CBasicKeyStore& keystore = tempKeystore;
|
||||
const FillableSigningProvider& keystore = tempKeystore;
|
||||
|
||||
bool fHashSingle = ((nHashType & ~SIGHASH_ANYONECANPAY) == SIGHASH_SINGLE);
|
||||
|
||||
|
Reference in New Issue
Block a user