2018-01-02 18:12:05 +01:00
// Copyright (c) 2009-2017 The Bitcoin Core developers
2014-11-20 03:19:29 +01:00
// Distributed under the MIT software license, see the accompanying
2012-05-18 16:02:28 +02:00
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
2011-07-13 11:56:38 +02:00
2017-11-10 01:57:53 +01:00
# include <base58.h>
# include <chain.h>
# include <rpc/safemode.h>
# include <rpc/server.h>
# include <wallet/init.h>
# include <validation.h>
# include <script/script.h>
# include <script/standard.h>
# include <sync.h>
# include <util.h>
# include <utiltime.h>
# include <wallet/wallet.h>
# include <merkleblock.h>
# include <core_io.h>
2011-07-13 11:56:38 +02:00
2017-11-10 01:57:53 +01:00
# include <wallet/rpcwallet.h>
2017-01-06 18:53:06 +01:00
2013-04-13 07:13:08 +02:00
# include <fstream>
# include <stdint.h>
# include <boost/algorithm/string.hpp>
2013-04-29 19:50:56 +02:00
# include <boost/date_time/posix_time/posix_time.hpp>
2014-09-14 12:43:56 +02:00
2015-09-04 16:11:34 +02:00
# include <univalue.h>
2012-04-05 03:19:27 +02:00
2015-07-05 14:17:46 +02:00
2013-04-13 07:13:08 +02:00
std : : string static EncodeDumpTime ( int64_t nTime ) {
2014-02-17 11:32:43 +01:00
return DateTimeStrFormat ( " %Y-%m-%dT%H:%M:%SZ " , nTime ) ;
2013-04-29 19:50:56 +02:00
}
2013-04-13 07:13:08 +02:00
int64_t static DecodeDumpTime ( const std : : string & str ) {
2013-04-29 19:50:56 +02:00
static const boost : : posix_time : : ptime epoch = boost : : posix_time : : from_time_t ( 0 ) ;
2014-02-17 11:32:43 +01:00
static const std : : locale loc ( std : : locale : : classic ( ) ,
new boost : : posix_time : : time_input_facet ( " %Y-%m-%dT%H:%M:%SZ " ) ) ;
2013-04-29 19:50:56 +02:00
std : : istringstream iss ( str ) ;
iss . imbue ( loc ) ;
boost : : posix_time : : ptime ptime ( boost : : date_time : : not_a_date_time ) ;
iss > > ptime ;
if ( ptime . is_not_a_date_time ( ) )
return 0 ;
return ( ptime - epoch ) . total_seconds ( ) ;
}
std : : string static EncodeDumpString ( const std : : string & str ) {
std : : stringstream ret ;
2017-06-02 03:18:57 +02:00
for ( unsigned char c : str ) {
2013-04-29 19:50:56 +02:00
if ( c < = 32 | | c > = 128 | | c = = ' % ' ) {
ret < < ' % ' < < HexStr ( & c , & c + 1 ) ;
} else {
ret < < c ;
}
}
return ret . str ( ) ;
}
std : : string DecodeDumpString ( const std : : string & str ) {
std : : stringstream ret ;
for ( unsigned int pos = 0 ; pos < str . length ( ) ; pos + + ) {
unsigned char c = str [ pos ] ;
if ( c = = ' % ' & & pos + 2 < str . length ( ) ) {
c = ( ( ( str [ pos + 1 ] > > 6 ) * 9 + ( ( str [ pos + 1 ] - ' 0 ' ) & 15 ) ) < < 4 ) |
( ( str [ pos + 2 ] > > 6 ) * 9 + ( ( str [ pos + 2 ] - ' 0 ' ) & 15 ) ) ;
pos + = 2 ;
}
ret < < c ;
2011-07-13 11:56:38 +02:00
}
2013-04-29 19:50:56 +02:00
return ret . str ( ) ;
}
2011-07-13 11:56:38 +02:00
2016-09-22 09:46:41 +02:00
UniValue importprivkey ( const JSONRPCRequest & request )
2011-07-13 11:56:38 +02:00
{
2016-10-25 09:45:57 +02:00
CWallet * const pwallet = GetWalletForJSONRPCRequest ( request ) ;
2016-10-25 10:04:23 +02:00
if ( ! EnsureWalletIsAvailable ( pwallet , request . fHelp ) ) {
2015-05-10 13:35:44 +02:00
return NullUniValue ;
2016-10-25 10:04:23 +02:00
}
2017-01-07 20:15:22 +01:00
2016-09-22 09:46:41 +02:00
if ( request . fHelp | | request . params . size ( ) < 1 | | request . params . size ( ) > 3 )
2017-01-27 02:33:45 +01:00
throw std : : runtime_error (
2017-10-09 05:18:48 +02:00
" importprivkey \" privkey \" ( \" label \" ) ( rescan ) \n "
2017-09-08 14:19:25 +02:00
" \n Adds a private key (as returned by dumpprivkey) to your wallet. Requires a new wallet backup. \n "
2013-10-29 12:29:44 +01:00
" \n Arguments: \n "
2017-10-09 05:18:48 +02:00
" 1. \" privkey \" (string, required) The private key (see dumpprivkey) \n "
2014-07-22 08:58:49 +02:00
" 2. \" label \" (string, optional, default= \" \" ) An optional label \n "
2013-10-29 12:29:44 +01:00
" 3. rescan (boolean, optional, default=true) Rescan the wallet for transactions \n "
2018-01-05 21:43:31 +01:00
" \n Note: This call can take minutes to complete if rescan is true, during that time, other rpc calls \n "
" may report that the imported key exists but related transactions are still missing, leading to temporarily incorrect/bogus balances and unspent outputs until rescan completes. \n "
2013-10-29 12:29:44 +01:00
" \n Examples: \n "
" \n Dump a private key \n "
+ HelpExampleCli ( " dumpprivkey " , " \" myaddress \" " ) +
2014-07-22 08:58:49 +02:00
" \n Import the private key with rescan \n "
2013-10-29 12:29:44 +01:00
+ HelpExampleCli ( " importprivkey " , " \" mykey \" " ) +
2014-07-22 08:58:49 +02:00
" \n Import using a label and without rescan \n "
2013-10-29 12:29:44 +01:00
+ HelpExampleCli ( " importprivkey " , " \" mykey \" \" testing \" false " ) +
2017-04-14 05:11:42 +02:00
" \n Import using default blank label and without rescan \n "
+ HelpExampleCli ( " importprivkey " , " \" mykey \" \" \" false " ) +
2014-07-22 08:58:49 +02:00
" \n As a JSON-RPC call \n "
2013-10-29 12:29:44 +01:00
+ HelpExampleRpc ( " importprivkey " , " \" mykey \" , \" testing \" , false " )
) ;
2011-07-13 11:56:38 +02:00
2015-04-24 21:42:51 +02:00
2017-12-13 00:13:58 +01:00
WalletRescanReserver reserver ( pwallet ) ;
2012-12-06 20:05:11 +01:00
bool fRescan = true ;
2017-09-08 01:29:59 +02:00
{
LOCK2 ( cs_main , pwallet - > cs_wallet ) ;
2012-12-06 20:05:11 +01:00
2017-09-08 01:29:59 +02:00
EnsureWalletIsUnlocked ( pwallet ) ;
2015-09-07 03:28:32 +02:00
2017-09-08 01:29:59 +02:00
std : : string strSecret = request . params [ 0 ] . get_str ( ) ;
std : : string strLabel = " " ;
if ( ! request . params [ 1 ] . isNull ( ) )
strLabel = request . params [ 1 ] . get_str ( ) ;
2011-07-13 11:56:38 +02:00
2017-09-08 01:29:59 +02:00
// Whether to perform rescan after import
if ( ! request . params [ 2 ] . isNull ( ) )
fRescan = request . params [ 2 ] . get_bool ( ) ;
2011-07-13 11:56:38 +02:00
2017-09-08 01:29:59 +02:00
if ( fRescan & & fPruneMode )
throw JSONRPCError ( RPC_WALLET_ERROR , " Rescan is disabled in pruned mode " ) ;
2014-01-28 09:38:10 +01:00
2017-12-13 00:13:58 +01:00
if ( fRescan & & ! reserver . reserve ( ) ) {
throw JSONRPCError ( RPC_WALLET_ERROR , " Wallet is currently rescanning. Abort existing rescan or wait. " ) ;
}
2017-09-08 01:29:59 +02:00
CBitcoinSecret vchSecret ;
bool fGood = vchSecret . SetString ( strSecret ) ;
2017-12-01 01:49:11 +01:00
2017-09-08 01:29:59 +02:00
if ( ! fGood ) throw JSONRPCError ( RPC_INVALID_ADDRESS_OR_KEY , " Invalid private key encoding " ) ;
2011-07-13 11:56:38 +02:00
2017-09-08 01:29:59 +02:00
CKey key = vchSecret . GetKey ( ) ;
if ( ! key . IsValid ( ) ) throw JSONRPCError ( RPC_INVALID_ADDRESS_OR_KEY , " Private key outside allowed range " ) ;
2013-04-29 19:50:56 +02:00
2017-09-08 01:29:59 +02:00
CPubKey pubkey = key . GetPubKey ( ) ;
assert ( key . VerifyPubKey ( pubkey ) ) ;
CKeyID vchAddress = pubkey . GetID ( ) ;
{
pwallet - > MarkDirty ( ) ;
// We don't know which corresponding address will be used; label them all
for ( const auto & dest : GetAllDestinationsForKey ( pubkey ) ) {
pwallet - > SetAddressBook ( dest , strLabel , " receive " ) ;
}
2014-01-09 20:23:20 +01:00
2017-09-08 01:29:59 +02:00
// Don't throw error in case a key is already there
if ( pwallet - > HaveKey ( vchAddress ) ) {
return NullUniValue ;
}
2013-05-01 06:52:05 +02:00
2017-09-08 01:29:59 +02:00
// whenever a key is imported, we need to scan the whole chain
pwallet - > UpdateTimeFirstKey ( 1 ) ;
pwallet - > mapKeyMetadata [ vchAddress ] . nCreateTime = 1 ;
2014-01-09 20:23:20 +01:00
2017-09-08 01:29:59 +02:00
if ( ! pwallet - > AddKeyPubKey ( key , pubkey ) ) {
throw JSONRPCError ( RPC_WALLET_ERROR , " Error adding key to wallet " ) ;
}
pwallet - > LearnAllRelatedScripts ( pubkey ) ;
2012-12-06 20:05:11 +01:00
}
2011-07-13 11:56:38 +02:00
}
2017-09-08 01:29:59 +02:00
if ( fRescan ) {
2017-12-13 00:13:58 +01:00
pwallet - > RescanFromTime ( TIMESTAMP_MIN , reserver , true /* update */ ) ;
2017-09-08 01:29:59 +02:00
}
2011-07-13 11:56:38 +02:00
2014-08-20 21:15:16 +02:00
return NullUniValue ;
2011-07-13 11:56:38 +02:00
}
2017-04-17 16:32:29 +02:00
UniValue abortrescan ( const JSONRPCRequest & request )
{
CWallet * const pwallet = GetWalletForJSONRPCRequest ( request ) ;
if ( ! EnsureWalletIsAvailable ( pwallet , request . fHelp ) ) {
return NullUniValue ;
}
if ( request . fHelp | | request . params . size ( ) > 0 )
throw std : : runtime_error (
" abortrescan \n "
2017-11-22 20:06:53 +01:00
" \n Stops current wallet rescan triggered by an RPC call, e.g. by an importprivkey call. \n "
2017-04-17 16:32:29 +02:00
" \n Examples: \n "
" \n Import a private key \n "
+ HelpExampleCli ( " importprivkey " , " \" mykey \" " ) +
" \n Abort the running wallet rescan \n "
+ HelpExampleCli ( " abortrescan " , " " ) +
" \n As a JSON-RPC call \n "
+ HelpExampleRpc ( " abortrescan " , " " )
) ;
2017-06-09 02:38:23 +02:00
ObserveSafeMode ( ) ;
2017-04-17 16:32:29 +02:00
if ( ! pwallet - > IsScanning ( ) | | pwallet - > IsAbortingRescan ( ) ) return false ;
pwallet - > AbortRescan ( ) ;
return true ;
}
2017-08-23 03:02:33 +02:00
void ImportAddress ( CWallet * , const CTxDestination & dest , const std : : string & strLabel ) ;
2017-01-27 02:33:45 +01:00
void ImportScript ( CWallet * const pwallet , const CScript & script , const std : : string & strLabel , bool isRedeemScript )
2015-06-11 09:57:26 +02:00
{
2016-10-25 10:04:23 +02:00
if ( ! isRedeemScript & & : : IsMine ( * pwallet , script ) = = ISMINE_SPENDABLE ) {
2015-06-11 09:57:26 +02:00
throw JSONRPCError ( RPC_WALLET_ERROR , " The wallet already contains the private key for this address or script " ) ;
2016-10-25 10:04:23 +02:00
}
2015-06-11 09:57:26 +02:00
2016-09-09 07:32:12 +02:00
pwallet - > MarkDirty ( ) ;
2015-06-11 09:57:26 +02:00
2016-10-25 10:04:23 +02:00
if ( ! pwallet - > HaveWatchOnly ( script ) & & ! pwallet - > AddWatchOnly ( script , 0 /* nCreateTime */ ) ) {
2015-06-11 09:57:26 +02:00
throw JSONRPCError ( RPC_WALLET_ERROR , " Error adding address to wallet " ) ;
2016-10-25 10:04:23 +02:00
}
2015-06-11 09:57:50 +02:00
if ( isRedeemScript ) {
2016-10-25 10:04:23 +02:00
if ( ! pwallet - > HaveCScript ( script ) & & ! pwallet - > AddCScript ( script ) ) {
2015-06-11 09:57:50 +02:00
throw JSONRPCError ( RPC_WALLET_ERROR , " Error adding p2sh redeemScript to wallet " ) ;
2016-10-25 10:04:23 +02:00
}
2017-08-23 03:02:33 +02:00
ImportAddress ( pwallet , CScriptID ( script ) , strLabel ) ;
2016-03-14 18:55:19 +01:00
} else {
CTxDestination destination ;
if ( ExtractDestination ( script , destination ) ) {
2016-09-09 07:32:12 +02:00
pwallet - > SetAddressBook ( destination , strLabel , " receive " ) ;
2016-03-14 18:55:19 +01:00
}
2015-06-11 09:57:50 +02:00
}
2015-06-11 09:57:26 +02:00
}
2017-08-23 03:02:33 +02:00
void ImportAddress ( CWallet * const pwallet , const CTxDestination & dest , const std : : string & strLabel )
2015-06-11 09:57:26 +02:00
{
2017-08-23 03:02:33 +02:00
CScript script = GetScriptForDestination ( dest ) ;
2016-09-09 07:32:12 +02:00
ImportScript ( pwallet , script , strLabel , false ) ;
2015-06-11 09:57:26 +02:00
// add to address book or update label
2017-08-23 03:02:33 +02:00
if ( IsValidDestination ( dest ) )
pwallet - > SetAddressBook ( dest , strLabel , " receive " ) ;
2015-06-11 09:57:26 +02:00
}
2016-09-22 09:46:41 +02:00
UniValue importaddress ( const JSONRPCRequest & request )
2013-07-26 01:06:01 +02:00
{
2016-10-25 09:45:57 +02:00
CWallet * const pwallet = GetWalletForJSONRPCRequest ( request ) ;
2016-10-25 10:04:23 +02:00
if ( ! EnsureWalletIsAvailable ( pwallet , request . fHelp ) ) {
2015-05-10 13:35:44 +02:00
return NullUniValue ;
2016-10-25 10:04:23 +02:00
}
2017-01-07 20:15:22 +01:00
2016-09-22 09:46:41 +02:00
if ( request . fHelp | | request . params . size ( ) < 1 | | request . params . size ( ) > 4 )
2017-01-27 02:33:45 +01:00
throw std : : runtime_error (
2015-06-11 09:57:50 +02:00
" importaddress \" address \" ( \" label \" rescan p2sh ) \n "
2017-09-08 14:19:25 +02:00
" \n Adds a script (in hex) or address that can be watched as if it were in your wallet but cannot be used to spend. Requires a new wallet backup. \n "
2014-07-22 08:58:49 +02:00
" \n Arguments: \n "
2015-07-10 07:47:47 +02:00
" 1. \" script \" (string, required) The hex-encoded script (or address) \n "
2014-07-22 08:58:49 +02:00
" 2. \" label \" (string, optional, default= \" \" ) An optional label \n "
" 3. rescan (boolean, optional, default=true) Rescan the wallet for transactions \n "
2015-06-11 09:57:50 +02:00
" 4. p2sh (boolean, optional, default=false) Add the P2SH version of the script as well \n "
2018-01-05 21:43:31 +01:00
" \n Note: This call can take minutes to complete if rescan is true, during that time, other rpc calls \n "
" may report that the imported address exists but related transactions are still missing, leading to temporarily incorrect/bogus balances and unspent outputs until rescan completes. \n "
2016-03-21 04:16:19 +01:00
" If you have the full public key, you should call importpubkey instead of this. \n "
2016-03-14 18:55:19 +01:00
" \n Note: If you import a non-standard raw script in hex form, outputs sending to it will be treated \n "
" as change, and not show up in many RPCs. \n "
2014-07-22 08:58:49 +02:00
" \n Examples: \n "
2015-07-10 07:47:47 +02:00
" \n Import a script with rescan \n "
+ HelpExampleCli ( " importaddress " , " \" myscript \" " ) +
2014-07-22 08:58:49 +02:00
" \n Import using a label without rescan \n "
2015-07-10 07:47:47 +02:00
+ HelpExampleCli ( " importaddress " , " \" myscript \" \" testing \" false " ) +
2014-07-22 08:58:49 +02:00
" \n As a JSON-RPC call \n "
2015-07-10 07:47:47 +02:00
+ HelpExampleRpc ( " importaddress " , " \" myscript \" , \" testing \" , false " )
2014-07-22 08:58:49 +02:00
) ;
2014-06-09 21:11:59 +02:00
2015-04-24 21:42:51 +02:00
2017-01-27 02:33:45 +01:00
std : : string strLabel = " " ;
2017-07-10 17:44:39 +02:00
if ( ! request . params [ 1 ] . isNull ( ) )
2016-09-22 09:46:41 +02:00
strLabel = request . params [ 1 ] . get_str ( ) ;
2014-10-19 10:46:17 +02:00
2014-08-30 02:35:05 +02:00
// Whether to perform rescan after import
2013-07-26 01:06:01 +02:00
bool fRescan = true ;
2017-07-10 17:44:39 +02:00
if ( ! request . params [ 2 ] . isNull ( ) )
2016-09-22 09:46:41 +02:00
fRescan = request . params [ 2 ] . get_bool ( ) ;
2013-07-26 01:06:01 +02:00
2015-09-07 03:28:32 +02:00
if ( fRescan & & fPruneMode )
throw JSONRPCError ( RPC_WALLET_ERROR , " Rescan is disabled in pruned mode " ) ;
2017-12-08 22:07:37 +01:00
WalletRescanReserver reserver ( pwallet ) ;
if ( fRescan & & ! reserver . reserve ( ) ) {
throw JSONRPCError ( RPC_WALLET_ERROR , " Wallet is currently rescanning. Abort existing rescan or wait. " ) ;
}
2015-06-11 09:57:50 +02:00
// Whether to import a p2sh version, too
bool fP2SH = false ;
2017-07-10 17:44:39 +02:00
if ( ! request . params [ 3 ] . isNull ( ) )
2016-09-22 09:46:41 +02:00
fP2SH = request . params [ 3 ] . get_bool ( ) ;
2013-07-26 01:06:01 +02:00
2017-09-08 01:29:59 +02:00
{
LOCK2 ( cs_main , pwallet - > cs_wallet ) ;
2013-07-26 01:06:01 +02:00
2017-09-08 01:29:59 +02:00
CTxDestination dest = DecodeDestination ( request . params [ 0 ] . get_str ( ) ) ;
if ( IsValidDestination ( dest ) ) {
if ( fP2SH ) {
throw JSONRPCError ( RPC_INVALID_ADDRESS_OR_KEY , " Cannot use the p2sh flag with an address - use a script instead " ) ;
}
ImportAddress ( pwallet , dest , strLabel ) ;
} else if ( IsHex ( request . params [ 0 ] . get_str ( ) ) ) {
std : : vector < unsigned char > data ( ParseHex ( request . params [ 0 ] . get_str ( ) ) ) ;
ImportScript ( pwallet , CScript ( data . begin ( ) , data . end ( ) ) , strLabel , fP2SH ) ;
} else {
throw JSONRPCError ( RPC_INVALID_ADDRESS_OR_KEY , " Invalid Bitcoin address or script " ) ;
2017-08-23 03:02:33 +02:00
}
2014-06-09 21:11:59 +02:00
}
2015-06-11 09:57:26 +02:00
if ( fRescan )
{
2017-12-13 00:13:58 +01:00
pwallet - > RescanFromTime ( TIMESTAMP_MIN , reserver , true /* update */ ) ;
2016-10-25 09:45:57 +02:00
pwallet - > ReacceptWalletTransactions ( ) ;
2013-07-26 01:06:01 +02:00
}
2014-08-20 21:15:16 +02:00
return NullUniValue ;
2013-07-26 01:06:01 +02:00
}
2016-09-22 09:46:41 +02:00
UniValue importprunedfunds ( const JSONRPCRequest & request )
2016-02-19 01:31:12 +01:00
{
2016-10-25 09:45:57 +02:00
CWallet * const pwallet = GetWalletForJSONRPCRequest ( request ) ;
2016-10-25 10:04:23 +02:00
if ( ! EnsureWalletIsAvailable ( pwallet , request . fHelp ) ) {
2016-02-19 01:31:12 +01:00
return NullUniValue ;
2016-10-25 10:04:23 +02:00
}
2016-02-19 01:31:12 +01:00
2016-09-22 09:46:41 +02:00
if ( request . fHelp | | request . params . size ( ) ! = 2 )
2017-01-27 02:33:45 +01:00
throw std : : runtime_error (
2016-02-19 01:31:12 +01:00
" importprunedfunds \n "
" \n Imports funds without rescan. Corresponding address or script must previously be included in wallet. Aimed towards pruned wallets. The end-user is responsible to import additional transactions that subsequently spend the imported outputs or rescan after the point in the blockchain the transaction is included. \n "
" \n Arguments: \n "
" 1. \" rawtransaction \" (string, required) A raw transaction in hex funding an already-existing address in wallet \n "
" 2. \" txoutproof \" (string, required) The hex output from gettxoutproof that contains the transaction \n "
) ;
2016-11-30 23:50:20 +01:00
CMutableTransaction tx ;
2016-09-22 09:46:41 +02:00
if ( ! DecodeHexTx ( tx , request . params [ 0 ] . get_str ( ) ) )
2016-02-19 01:31:12 +01:00
throw JSONRPCError ( RPC_DESERIALIZATION_ERROR , " TX decode failed " ) ;
uint256 hashTx = tx . GetHash ( ) ;
2016-10-25 09:45:57 +02:00
CWalletTx wtx ( pwallet , MakeTransactionRef ( std : : move ( tx ) ) ) ;
2016-02-19 01:31:12 +01:00
2016-09-22 09:46:41 +02:00
CDataStream ssMB ( ParseHexV ( request . params [ 1 ] , " proof " ) , SER_NETWORK , PROTOCOL_VERSION ) ;
2016-02-19 01:31:12 +01:00
CMerkleBlock merkleBlock ;
ssMB > > merkleBlock ;
//Search partial merkle tree in proof for our transaction and index in valid block
2017-01-27 02:33:45 +01:00
std : : vector < uint256 > vMatch ;
std : : vector < unsigned int > vIndex ;
2016-02-19 01:31:12 +01:00
unsigned int txnIndex = 0 ;
if ( merkleBlock . txn . ExtractMatches ( vMatch , vIndex ) = = merkleBlock . header . hashMerkleRoot ) {
LOCK ( cs_main ) ;
if ( ! mapBlockIndex . count ( merkleBlock . header . GetHash ( ) ) | | ! chainActive . Contains ( mapBlockIndex [ merkleBlock . header . GetHash ( ) ] ) )
throw JSONRPCError ( RPC_INVALID_ADDRESS_OR_KEY , " Block not found in chain " ) ;
2017-01-27 02:33:45 +01:00
std : : vector < uint256 > : : const_iterator it ;
2016-02-19 01:31:12 +01:00
if ( ( it = std : : find ( vMatch . begin ( ) , vMatch . end ( ) , hashTx ) ) = = vMatch . end ( ) ) {
throw JSONRPCError ( RPC_INVALID_ADDRESS_OR_KEY , " Transaction given doesn't exist in proof " ) ;
}
txnIndex = vIndex [ it - vMatch . begin ( ) ] ;
}
else {
throw JSONRPCError ( RPC_INVALID_ADDRESS_OR_KEY , " Something wrong with merkleblock " ) ;
}
wtx . nIndex = txnIndex ;
wtx . hashBlock = merkleBlock . header . GetHash ( ) ;
2016-10-25 09:45:57 +02:00
LOCK2 ( cs_main , pwallet - > cs_wallet ) ;
2016-02-19 01:31:12 +01:00
2017-05-09 08:46:26 +02:00
if ( pwallet - > IsMine ( * wtx . tx ) ) {
2016-10-25 09:45:57 +02:00
pwallet - > AddToWallet ( wtx , false ) ;
2016-02-19 01:31:12 +01:00
return NullUniValue ;
}
throw JSONRPCError ( RPC_INVALID_ADDRESS_OR_KEY , " No addresses in wallet correspond to included transaction " ) ;
}
2016-09-22 09:46:41 +02:00
UniValue removeprunedfunds ( const JSONRPCRequest & request )
2016-03-07 14:51:06 +01:00
{
2016-10-25 09:45:57 +02:00
CWallet * const pwallet = GetWalletForJSONRPCRequest ( request ) ;
2016-10-25 10:04:23 +02:00
if ( ! EnsureWalletIsAvailable ( pwallet , request . fHelp ) ) {
2016-03-07 14:51:06 +01:00
return NullUniValue ;
2016-10-25 10:04:23 +02:00
}
2016-03-07 14:51:06 +01:00
2016-09-22 09:46:41 +02:00
if ( request . fHelp | | request . params . size ( ) ! = 1 )
2017-01-27 02:33:45 +01:00
throw std : : runtime_error (
2016-03-07 14:51:06 +01:00
" removeprunedfunds \" txid \" \n "
2017-05-27 17:44:10 +02:00
" \n Deletes the specified transaction from the wallet. Meant for use with pruned wallets and as a companion to importprunedfunds. This will affect wallet balances. \n "
2016-03-07 14:51:06 +01:00
" \n Arguments: \n "
" 1. \" txid \" (string, required) The hex-encoded id of the transaction you are deleting \n "
" \n Examples: \n "
+ HelpExampleCli ( " removeprunedfunds " , " \" a8d0c0184dde994a09ec054286f1ce581bebf46446a512166eae7628734ea0a5 \" " ) +
" \n As a JSON-RPC call \n "
2017-07-03 09:29:13 +02:00
+ HelpExampleRpc ( " removeprunedfunds " , " \" a8d0c0184dde994a09ec054286f1ce581bebf46446a512166eae7628734ea0a5 \" " )
2016-03-07 14:51:06 +01:00
) ;
2016-10-25 09:45:57 +02:00
LOCK2 ( cs_main , pwallet - > cs_wallet ) ;
2016-03-07 14:51:06 +01:00
uint256 hash ;
2016-09-22 09:46:41 +02:00
hash . SetHex ( request . params [ 0 ] . get_str ( ) ) ;
2017-01-27 02:33:45 +01:00
std : : vector < uint256 > vHash ;
2016-03-07 14:51:06 +01:00
vHash . push_back ( hash ) ;
2017-01-27 02:33:45 +01:00
std : : vector < uint256 > vHashOut ;
2016-03-07 14:51:06 +01:00
2016-10-25 10:04:23 +02:00
if ( pwallet - > ZapSelectTx ( vHash , vHashOut ) ! = DB_LOAD_OK ) {
2017-02-09 22:27:28 +01:00
throw JSONRPCError ( RPC_WALLET_ERROR , " Could not properly delete the transaction. " ) ;
2016-03-07 14:51:06 +01:00
}
if ( vHashOut . empty ( ) ) {
2017-02-09 22:27:28 +01:00
throw JSONRPCError ( RPC_INVALID_PARAMETER , " Transaction does not exist in wallet. " ) ;
2016-03-07 14:51:06 +01:00
}
return NullUniValue ;
}
2016-09-22 09:46:41 +02:00
UniValue importpubkey ( const JSONRPCRequest & request )
2015-07-10 07:47:36 +02:00
{
2016-10-25 09:45:57 +02:00
CWallet * const pwallet = GetWalletForJSONRPCRequest ( request ) ;
2016-10-25 10:04:23 +02:00
if ( ! EnsureWalletIsAvailable ( pwallet , request . fHelp ) ) {
2015-07-10 07:47:36 +02:00
return NullUniValue ;
2016-10-25 10:04:23 +02:00
}
2015-07-10 07:47:36 +02:00
2016-09-22 09:46:41 +02:00
if ( request . fHelp | | request . params . size ( ) < 1 | | request . params . size ( ) > 4 )
2017-01-27 02:33:45 +01:00
throw std : : runtime_error (
2015-07-10 07:47:36 +02:00
" importpubkey \" pubkey \" ( \" label \" rescan ) \n "
2017-09-08 14:19:25 +02:00
" \n Adds a public key (in hex) that can be watched as if it were in your wallet but cannot be used to spend. Requires a new wallet backup. \n "
2015-07-10 07:47:36 +02:00
" \n Arguments: \n "
" 1. \" pubkey \" (string, required) The hex-encoded public key \n "
" 2. \" label \" (string, optional, default= \" \" ) An optional label \n "
" 3. rescan (boolean, optional, default=true) Rescan the wallet for transactions \n "
2018-01-05 21:43:31 +01:00
" \n Note: This call can take minutes to complete if rescan is true, during that time, other rpc calls \n "
" may report that the imported pubkey exists but related transactions are still missing, leading to temporarily incorrect/bogus balances and unspent outputs until rescan completes. \n "
2015-07-10 07:47:36 +02:00
" \n Examples: \n "
" \n Import a public key with rescan \n "
+ HelpExampleCli ( " importpubkey " , " \" mypubkey \" " ) +
" \n Import using a label without rescan \n "
+ HelpExampleCli ( " importpubkey " , " \" mypubkey \" \" testing \" false " ) +
" \n As a JSON-RPC call \n "
+ HelpExampleRpc ( " importpubkey " , " \" mypubkey \" , \" testing \" , false " )
) ;
2017-01-27 02:33:45 +01:00
std : : string strLabel = " " ;
2017-07-10 17:44:39 +02:00
if ( ! request . params [ 1 ] . isNull ( ) )
2016-09-22 09:46:41 +02:00
strLabel = request . params [ 1 ] . get_str ( ) ;
2013-07-26 01:06:01 +02:00
2014-08-30 02:35:05 +02:00
// Whether to perform rescan after import
2013-07-26 01:06:01 +02:00
bool fRescan = true ;
2017-07-10 17:44:39 +02:00
if ( ! request . params [ 2 ] . isNull ( ) )
2016-09-22 09:46:41 +02:00
fRescan = request . params [ 2 ] . get_bool ( ) ;
2013-07-26 01:06:01 +02:00
2015-09-07 03:28:32 +02:00
if ( fRescan & & fPruneMode )
throw JSONRPCError ( RPC_WALLET_ERROR , " Rescan is disabled in pruned mode " ) ;
2017-12-08 22:07:37 +01:00
WalletRescanReserver reserver ( pwallet ) ;
if ( fRescan & & ! reserver . reserve ( ) ) {
throw JSONRPCError ( RPC_WALLET_ERROR , " Wallet is currently rescanning. Abort existing rescan or wait. " ) ;
}
2016-09-22 09:46:41 +02:00
if ( ! IsHex ( request . params [ 0 ] . get_str ( ) ) )
2015-07-10 07:47:36 +02:00
throw JSONRPCError ( RPC_INVALID_ADDRESS_OR_KEY , " Pubkey must be a hex string " ) ;
2016-09-22 09:46:41 +02:00
std : : vector < unsigned char > data ( ParseHex ( request . params [ 0 ] . get_str ( ) ) ) ;
2015-07-10 07:47:36 +02:00
CPubKey pubKey ( data . begin ( ) , data . end ( ) ) ;
if ( ! pubKey . IsFullyValid ( ) )
throw JSONRPCError ( RPC_INVALID_ADDRESS_OR_KEY , " Pubkey is not a valid public key " ) ;
2013-07-26 01:06:01 +02:00
2017-09-08 01:29:59 +02:00
{
LOCK2 ( cs_main , pwallet - > cs_wallet ) ;
2013-07-26 01:06:01 +02:00
2017-09-08 01:29:59 +02:00
for ( const auto & dest : GetAllDestinationsForKey ( pubKey ) ) {
ImportAddress ( pwallet , dest , strLabel ) ;
}
ImportScript ( pwallet , GetScriptForRawPubKey ( pubKey ) , strLabel , false ) ;
pwallet - > LearnAllRelatedScripts ( pubKey ) ;
2017-12-01 01:49:11 +01:00
}
2015-07-10 07:47:36 +02:00
if ( fRescan )
{
2017-12-13 00:13:58 +01:00
pwallet - > RescanFromTime ( TIMESTAMP_MIN , reserver , true /* update */ ) ;
2016-10-25 09:45:57 +02:00
pwallet - > ReacceptWalletTransactions ( ) ;
2013-07-26 01:06:01 +02:00
}
2014-08-20 21:15:16 +02:00
return NullUniValue ;
2013-07-26 01:06:01 +02:00
}
2015-07-10 07:47:36 +02:00
2016-09-22 09:46:41 +02:00
UniValue importwallet ( const JSONRPCRequest & request )
2013-04-29 19:50:56 +02:00
{
2016-10-25 09:45:57 +02:00
CWallet * const pwallet = GetWalletForJSONRPCRequest ( request ) ;
2016-10-25 10:04:23 +02:00
if ( ! EnsureWalletIsAvailable ( pwallet , request . fHelp ) ) {
2015-05-10 13:35:44 +02:00
return NullUniValue ;
2016-10-25 10:04:23 +02:00
}
2017-01-07 20:15:22 +01:00
2016-09-22 09:46:41 +02:00
if ( request . fHelp | | request . params . size ( ) ! = 1 )
2017-01-27 02:33:45 +01:00
throw std : : runtime_error (
2013-10-29 12:29:44 +01:00
" importwallet \" filename \" \n "
2017-09-08 14:19:25 +02:00
" \n Imports keys from a wallet dump file (see dumpwallet). Requires a new wallet backup to include imported keys. \n "
2013-10-29 12:29:44 +01:00
" \n Arguments: \n "
" 1. \" filename \" (string, required) The wallet file \n "
" \n Examples: \n "
" \n Dump the wallet \n "
+ HelpExampleCli ( " dumpwallet " , " \" test \" " ) +
" \n Import the wallet \n "
+ HelpExampleCli ( " importwallet " , " \" test \" " ) +
" \n Import using the json rpc call \n "
+ HelpExampleRpc ( " importwallet " , " \" test \" " )
) ;
2013-04-29 19:50:56 +02:00
2015-04-24 21:42:51 +02:00
if ( fPruneMode )
throw JSONRPCError ( RPC_WALLET_ERROR , " Importing wallets is disabled in pruned mode " ) ;
2017-12-08 22:07:37 +01:00
WalletRescanReserver reserver ( pwallet ) ;
if ( ! reserver . reserve ( ) ) {
throw JSONRPCError ( RPC_WALLET_ERROR , " Wallet is currently rescanning. Abort existing rescan or wait. " ) ;
}
2017-09-08 01:29:59 +02:00
int64_t nTimeBegin = 0 ;
bool fGood = true ;
{
LOCK2 ( cs_main , pwallet - > cs_wallet ) ;
2014-10-19 10:46:17 +02:00
2017-09-08 01:29:59 +02:00
EnsureWalletIsUnlocked ( pwallet ) ;
2013-04-29 19:50:56 +02:00
2017-09-08 01:29:59 +02:00
std : : ifstream file ;
file . open ( request . params [ 0 ] . get_str ( ) . c_str ( ) , std : : ios : : in | std : : ios : : ate ) ;
if ( ! file . is_open ( ) ) {
throw JSONRPCError ( RPC_INVALID_PARAMETER , " Cannot open wallet dump file " ) ;
}
nTimeBegin = chainActive . Tip ( ) - > GetBlockTime ( ) ;
2013-04-29 19:50:56 +02:00
2017-09-08 01:29:59 +02:00
int64_t nFilesize = std : : max ( ( int64_t ) 1 , ( int64_t ) file . tellg ( ) ) ;
file . seekg ( 0 , file . beg ) ;
2013-04-13 07:13:08 +02:00
2017-09-08 01:29:59 +02:00
pwallet - > ShowProgress ( _ ( " Importing... " ) , 0 ) ; // show progress dialog in GUI
while ( file . good ( ) ) {
pwallet - > ShowProgress ( " " , std : : max ( 1 , std : : min ( 99 , ( int ) ( ( ( double ) file . tellg ( ) / ( double ) nFilesize ) * 100 ) ) ) ) ;
std : : string line ;
std : : getline ( file , line ) ;
if ( line . empty ( ) | | line [ 0 ] = = ' # ' )
continue ;
2013-04-29 19:50:56 +02:00
2017-09-08 01:29:59 +02:00
std : : vector < std : : string > vstr ;
boost : : split ( vstr , line , boost : : is_any_of ( " " ) ) ;
if ( vstr . size ( ) < 2 )
2017-11-12 04:28:46 +01:00
continue ;
2017-09-08 01:29:59 +02:00
CBitcoinSecret vchSecret ;
if ( vchSecret . SetString ( vstr [ 0 ] ) ) {
CKey key = vchSecret . GetKey ( ) ;
CPubKey pubkey = key . GetPubKey ( ) ;
assert ( key . VerifyPubKey ( pubkey ) ) ;
CKeyID keyid = pubkey . GetID ( ) ;
if ( pwallet - > HaveKey ( keyid ) ) {
LogPrintf ( " Skipping import of %s (key already present) \n " , EncodeDestination ( keyid ) ) ;
continue ;
2017-11-12 04:28:46 +01:00
}
2017-09-08 01:29:59 +02:00
int64_t nTime = DecodeDumpTime ( vstr [ 1 ] ) ;
std : : string strLabel ;
bool fLabel = true ;
for ( unsigned int nStr = 2 ; nStr < vstr . size ( ) ; nStr + + ) {
if ( boost : : algorithm : : starts_with ( vstr [ nStr ] , " # " ) )
break ;
if ( vstr [ nStr ] = = " change=1 " )
fLabel = false ;
if ( vstr [ nStr ] = = " reserve=1 " )
fLabel = false ;
if ( boost : : algorithm : : starts_with ( vstr [ nStr ] , " label= " ) ) {
strLabel = DecodeDumpString ( vstr [ nStr ] . substr ( 6 ) ) ;
fLabel = true ;
}
}
LogPrintf ( " Importing %s... \n " , EncodeDestination ( keyid ) ) ;
if ( ! pwallet - > AddKeyPubKey ( key , pubkey ) ) {
fGood = false ;
continue ;
}
pwallet - > mapKeyMetadata [ keyid ] . nCreateTime = nTime ;
if ( fLabel )
pwallet - > SetAddressBook ( keyid , strLabel , " receive " ) ;
nTimeBegin = std : : min ( nTimeBegin , nTime ) ;
} else if ( IsHex ( vstr [ 0 ] ) ) {
std : : vector < unsigned char > vData ( ParseHex ( vstr [ 0 ] ) ) ;
CScript script = CScript ( vData . begin ( ) , vData . end ( ) ) ;
if ( pwallet - > HaveCScript ( script ) ) {
LogPrintf ( " Skipping import of %s (script already present) \n " , vstr [ 0 ] ) ;
continue ;
}
if ( ! pwallet - > AddCScript ( script ) ) {
LogPrintf ( " Error importing script %s \n " , vstr [ 0 ] ) ;
fGood = false ;
continue ;
}
int64_t birth_time = DecodeDumpTime ( vstr [ 1 ] ) ;
if ( birth_time > 0 ) {
pwallet - > m_script_metadata [ CScriptID ( script ) ] . nCreateTime = birth_time ;
nTimeBegin = std : : min ( nTimeBegin , birth_time ) ;
}
2017-11-12 04:28:46 +01:00
}
2013-04-29 19:50:56 +02:00
}
2017-09-08 01:29:59 +02:00
file . close ( ) ;
pwallet - > ShowProgress ( " " , 100 ) ; // hide progress dialog in GUI
pwallet - > UpdateTimeFirstKey ( nTimeBegin ) ;
2013-04-29 19:50:56 +02:00
}
2017-12-13 00:13:58 +01:00
pwallet - > RescanFromTime ( nTimeBegin , reserver , false /* update */ ) ;
2016-10-25 09:45:57 +02:00
pwallet - > MarkDirty ( ) ;
2013-04-29 19:50:56 +02:00
if ( ! fGood )
2017-11-12 04:28:46 +01:00
throw JSONRPCError ( RPC_WALLET_ERROR , " Error adding some keys/scripts to wallet " ) ;
2013-04-29 19:50:56 +02:00
2014-08-20 21:15:16 +02:00
return NullUniValue ;
2013-04-29 19:50:56 +02:00
}
2016-09-22 09:46:41 +02:00
UniValue dumpprivkey ( const JSONRPCRequest & request )
2011-07-13 11:56:38 +02:00
{
2016-10-25 09:45:57 +02:00
CWallet * const pwallet = GetWalletForJSONRPCRequest ( request ) ;
2016-10-25 10:04:23 +02:00
if ( ! EnsureWalletIsAvailable ( pwallet , request . fHelp ) ) {
2015-05-10 13:35:44 +02:00
return NullUniValue ;
2016-10-25 10:04:23 +02:00
}
2017-01-07 20:15:22 +01:00
2016-09-22 09:46:41 +02:00
if ( request . fHelp | | request . params . size ( ) ! = 1 )
2017-01-27 02:33:45 +01:00
throw std : : runtime_error (
2016-11-21 14:39:58 +01:00
" dumpprivkey \" address \" \n "
" \n Reveals the private key corresponding to 'address'. \n "
2013-10-29 12:29:44 +01:00
" Then the importprivkey can be used with this output \n "
" \n Arguments: \n "
2016-11-21 14:39:58 +01:00
" 1. \" address \" (string, required) The bitcoin address for the private key \n "
2013-10-29 12:29:44 +01:00
" \n Result: \n "
" \" key \" (string) The private key \n "
" \n Examples: \n "
+ HelpExampleCli ( " dumpprivkey " , " \" myaddress \" " )
+ HelpExampleCli ( " importprivkey " , " \" mykey \" " )
+ HelpExampleRpc ( " dumpprivkey " , " \" myaddress \" " )
) ;
2011-07-13 11:56:38 +02:00
2016-10-25 09:45:57 +02:00
LOCK2 ( cs_main , pwallet - > cs_wallet ) ;
2014-10-19 10:46:17 +02:00
2016-10-25 09:45:57 +02:00
EnsureWalletIsUnlocked ( pwallet ) ;
2013-04-29 19:50:56 +02:00
2017-01-27 02:33:45 +01:00
std : : string strAddress = request . params [ 0 ] . get_str ( ) ;
2017-08-23 03:02:33 +02:00
CTxDestination dest = DecodeDestination ( strAddress ) ;
if ( ! IsValidDestination ( dest ) ) {
2012-10-04 09:34:44 +02:00
throw JSONRPCError ( RPC_INVALID_ADDRESS_OR_KEY , " Invalid Bitcoin address " ) ;
2017-08-23 03:02:33 +02:00
}
2017-12-01 01:48:55 +01:00
auto keyid = GetKeyForDestination ( * pwallet , dest ) ;
if ( keyid . IsNull ( ) ) {
2012-10-04 09:34:44 +02:00
throw JSONRPCError ( RPC_TYPE_ERROR , " Address does not refer to a key " ) ;
2017-08-23 03:02:33 +02:00
}
2013-05-01 06:52:05 +02:00
CKey vchSecret ;
2017-12-01 01:48:55 +01:00
if ( ! pwallet - > GetKey ( keyid , vchSecret ) ) {
2012-10-04 09:34:44 +02:00
throw JSONRPCError ( RPC_WALLET_ERROR , " Private key for address " + strAddress + " is not known " ) ;
2016-10-25 10:04:23 +02:00
}
2013-05-01 06:52:05 +02:00
return CBitcoinSecret ( vchSecret ) . ToString ( ) ;
2011-07-13 11:56:38 +02:00
}
2013-04-29 19:50:56 +02:00
2016-09-22 09:46:41 +02:00
UniValue dumpwallet ( const JSONRPCRequest & request )
2013-04-29 19:50:56 +02:00
{
2016-10-25 09:45:57 +02:00
CWallet * const pwallet = GetWalletForJSONRPCRequest ( request ) ;
2016-10-25 10:04:23 +02:00
if ( ! EnsureWalletIsAvailable ( pwallet , request . fHelp ) ) {
2015-05-10 13:35:44 +02:00
return NullUniValue ;
2016-10-25 10:04:23 +02:00
}
2017-01-07 20:15:22 +01:00
2016-09-22 09:46:41 +02:00
if ( request . fHelp | | request . params . size ( ) ! = 1 )
2017-01-27 02:33:45 +01:00
throw std : : runtime_error (
2013-10-29 12:29:44 +01:00
" dumpwallet \" filename \" \n "
2017-03-07 09:50:41 +01:00
" \n Dumps all wallet keys in a human-readable format to a server-side file. This does not allow overwriting existing files. \n "
2017-11-12 05:11:26 +01:00
" Imported scripts are included in the dumpfile, but corresponding BIP173 addresses, etc. may not be added automatically by importwallet. \n "
2017-10-19 11:01:30 +02:00
" Note that if your wallet contains keys which are not derived from your HD seed (e.g. imported keys), these are not covered by \n "
" only backing up the seed itself, and must be backed up too (e.g. ensure you back up the whole dumpfile). \n "
2013-10-29 12:29:44 +01:00
" \n Arguments: \n "
2017-02-10 13:47:53 +01:00
" 1. \" filename \" (string, required) The filename with path (either absolute or relative to bitcoind) \n "
" \n Result: \n "
" { (json object) \n "
" \" filename \" : { (string) The filename with full absolute path \n "
" } \n "
2013-10-29 12:29:44 +01:00
" \n Examples: \n "
+ HelpExampleCli ( " dumpwallet " , " \" test \" " )
+ HelpExampleRpc ( " dumpwallet " , " \" test \" " )
) ;
2013-04-29 19:50:56 +02:00
2016-10-25 09:45:57 +02:00
LOCK2 ( cs_main , pwallet - > cs_wallet ) ;
2014-10-19 10:46:17 +02:00
2016-10-25 09:45:57 +02:00
EnsureWalletIsUnlocked ( pwallet ) ;
2013-04-29 19:50:56 +02:00
2017-02-10 13:47:53 +01:00
boost : : filesystem : : path filepath = request . params [ 0 ] . get_str ( ) ;
filepath = boost : : filesystem : : absolute ( filepath ) ;
2017-03-07 09:50:41 +01:00
/* Prevent arbitrary files from being overwritten. There have been reports
* that users have overwritten wallet files this way :
* https : //github.com/bitcoin/bitcoin/issues/9934
* It may also avoid other security issues .
*/
if ( boost : : filesystem : : exists ( filepath ) ) {
throw JSONRPCError ( RPC_INVALID_PARAMETER , filepath . string ( ) + " already exists. If you are sure this is what you want, move it out of the way first " ) ;
}
std : : ofstream file ;
2017-02-10 13:47:53 +01:00
file . open ( filepath . string ( ) . c_str ( ) ) ;
2013-04-29 19:50:56 +02:00
if ( ! file . is_open ( ) )
throw JSONRPCError ( RPC_INVALID_PARAMETER , " Cannot open wallet dump file " ) ;
2016-11-08 22:55:02 +01:00
std : : map < CTxDestination , int64_t > mapKeyBirth ;
2017-07-21 19:54:13 +02:00
const std : : map < CKeyID , int64_t > & mapKeyPool = pwallet - > GetAllReserveKeys ( ) ;
2016-10-25 09:45:57 +02:00
pwallet - > GetKeyBirthTimes ( mapKeyBirth ) ;
2013-04-29 19:50:56 +02:00
2017-11-11 09:21:12 +01:00
std : : set < CScriptID > scripts = pwallet - > GetCScripts ( ) ;
2017-12-20 07:01:05 +01:00
// TODO: include scripts in GetKeyBirthTimes() output instead of separate
2017-11-11 09:21:12 +01:00
2013-04-29 19:50:56 +02:00
// sort time/key pairs
2013-04-13 07:13:08 +02:00
std : : vector < std : : pair < int64_t , CKeyID > > vKeyBirth ;
2016-11-08 22:55:02 +01:00
for ( const auto & entry : mapKeyBirth ) {
if ( const CKeyID * keyID = boost : : get < CKeyID > ( & entry . first ) ) { // set and test
vKeyBirth . push_back ( std : : make_pair ( entry . second , * keyID ) ) ;
}
2013-04-29 19:50:56 +02:00
}
mapKeyBirth . clear ( ) ;
std : : sort ( vKeyBirth . begin ( ) , vKeyBirth . end ( ) ) ;
// produce output
2016-06-09 11:09:21 +02:00
file < < strprintf ( " # Wallet dump created by Bitcoin %s \n " , CLIENT_BUILD ) ;
2014-01-16 16:15:27 +01:00
file < < strprintf ( " # * Created on %s \n " , EncodeDumpTime ( GetTime ( ) ) ) ;
file < < strprintf ( " # * Best block at time of backup was %i (%s), \n " , chainActive . Height ( ) , chainActive . Tip ( ) - > GetBlockHash ( ) . ToString ( ) ) ;
2014-06-28 23:36:06 +02:00
file < < strprintf ( " # mined on %s \n " , EncodeDumpTime ( chainActive . Tip ( ) - > GetBlockTime ( ) ) ) ;
2013-04-29 19:50:56 +02:00
file < < " \n " ;
2016-06-15 10:49:29 +02:00
2017-09-08 01:29:59 +02:00
// add the base58check encoded extended master if the wallet uses HD
2016-10-25 09:45:57 +02:00
CKeyID masterKeyID = pwallet - > GetHDChain ( ) . masterKeyID ;
2016-06-15 10:49:29 +02:00
if ( ! masterKeyID . IsNull ( ) )
{
CKey key ;
2016-10-25 10:04:23 +02:00
if ( pwallet - > GetKey ( masterKeyID , key ) ) {
2016-06-15 10:49:29 +02:00
CExtKey masterKey ;
masterKey . SetMaster ( key . begin ( ) , key . size ( ) ) ;
CBitcoinExtKey b58extkey ;
b58extkey . SetKey ( masterKey ) ;
file < < " # extended private masterkey: " < < b58extkey . ToString ( ) < < " \n \n " ;
}
}
2013-04-13 07:13:08 +02:00
for ( std : : vector < std : : pair < int64_t , CKeyID > > : : const_iterator it = vKeyBirth . begin ( ) ; it ! = vKeyBirth . end ( ) ; it + + ) {
2013-04-29 19:50:56 +02:00
const CKeyID & keyid = it - > second ;
std : : string strTime = EncodeDumpTime ( it - > first ) ;
2017-08-23 03:02:33 +02:00
std : : string strAddr = EncodeDestination ( keyid ) ;
2013-04-29 19:50:56 +02:00
CKey key ;
2016-10-25 09:45:57 +02:00
if ( pwallet - > GetKey ( keyid , key ) ) {
2016-06-15 10:49:29 +02:00
file < < strprintf ( " %s %s " , CBitcoinSecret ( key ) . ToString ( ) , strTime ) ;
2016-10-25 09:45:57 +02:00
if ( pwallet - > mapAddressBook . count ( keyid ) ) {
file < < strprintf ( " label=%s " , EncodeDumpString ( pwallet - > mapAddressBook [ keyid ] . name ) ) ;
2016-06-15 10:49:29 +02:00
} else if ( keyid = = masterKeyID ) {
file < < " hdmaster=1 " ;
2017-07-21 19:54:13 +02:00
} else if ( mapKeyPool . count ( keyid ) ) {
2016-06-15 10:49:29 +02:00
file < < " reserve=1 " ;
2016-10-25 09:45:57 +02:00
} else if ( pwallet - > mapKeyMetadata [ keyid ] . hdKeypath = = " m " ) {
2016-06-15 10:49:29 +02:00
file < < " inactivehdmaster=1 " ;
2013-04-29 19:50:56 +02:00
} else {
2016-06-15 10:49:29 +02:00
file < < " change=1 " ;
2013-04-29 19:50:56 +02:00
}
2016-10-25 09:45:57 +02:00
file < < strprintf ( " # addr=%s%s \n " , strAddr , ( pwallet - > mapKeyMetadata [ keyid ] . hdKeypath . size ( ) > 0 ? " hdkeypath= " + pwallet - > mapKeyMetadata [ keyid ] . hdKeypath : " " ) ) ;
2013-04-29 19:50:56 +02:00
}
}
file < < " \n " ;
2017-11-11 09:21:12 +01:00
for ( const CScriptID & scriptid : scripts ) {
CScript script ;
2017-12-20 07:01:05 +01:00
std : : string create_time = " 0 " ;
2017-11-11 09:21:12 +01:00
std : : string address = EncodeDestination ( scriptid ) ;
2017-12-20 07:01:05 +01:00
// get birth times for scripts with metadata
auto it = pwallet - > m_script_metadata . find ( scriptid ) ;
if ( it ! = pwallet - > m_script_metadata . end ( ) ) {
create_time = EncodeDumpTime ( it - > second . nCreateTime ) ;
}
2017-11-11 09:21:12 +01:00
if ( pwallet - > GetCScript ( scriptid , script ) ) {
2017-12-20 07:01:05 +01:00
file < < strprintf ( " %s %s script=1 " , HexStr ( script . begin ( ) , script . end ( ) ) , create_time ) ;
2017-11-11 09:21:12 +01:00
file < < strprintf ( " # addr=%s \n " , address ) ;
}
}
file < < " \n " ;
2013-04-29 19:50:56 +02:00
file < < " # End of dump \n " ;
file . close ( ) ;
2017-02-10 13:47:53 +01:00
UniValue reply ( UniValue : : VOBJ ) ;
reply . push_back ( Pair ( " filename " , filepath . string ( ) ) ) ;
return reply ;
2013-04-29 19:50:56 +02:00
}
2016-06-16 16:57:48 +02:00
2016-09-09 07:32:12 +02:00
UniValue ProcessImport ( CWallet * const pwallet , const UniValue & data , const int64_t timestamp )
2017-02-03 22:23:13 +01:00
{
2016-06-16 16:57:48 +02:00
try {
bool success = false ;
// Required fields.
const UniValue & scriptPubKey = data [ " scriptPubKey " ] ;
// Should have script or JSON with "address".
if ( ! ( scriptPubKey . getType ( ) = = UniValue : : VOBJ & & scriptPubKey . exists ( " address " ) ) & & ! ( scriptPubKey . getType ( ) = = UniValue : : VSTR ) ) {
throw JSONRPCError ( RPC_INVALID_PARAMETER , " Invalid scriptPubKey " ) ;
}
// Optional fields.
2017-01-27 02:33:45 +01:00
const std : : string & strRedeemScript = data . exists ( " redeemscript " ) ? data [ " redeemscript " ] . get_str ( ) : " " ;
2016-06-16 16:57:48 +02:00
const UniValue & pubKeys = data . exists ( " pubkeys " ) ? data [ " pubkeys " ] . get_array ( ) : UniValue ( ) ;
const UniValue & keys = data . exists ( " keys " ) ? data [ " keys " ] . get_array ( ) : UniValue ( ) ;
2017-07-16 02:07:52 +02:00
const bool internal = data . exists ( " internal " ) ? data [ " internal " ] . get_bool ( ) : false ;
const bool watchOnly = data . exists ( " watchonly " ) ? data [ " watchonly " ] . get_bool ( ) : false ;
2017-01-27 02:33:45 +01:00
const std : : string & label = data . exists ( " label " ) & & ! internal ? data [ " label " ] . get_str ( ) : " " ;
2016-06-16 16:57:48 +02:00
bool isScript = scriptPubKey . getType ( ) = = UniValue : : VSTR ;
bool isP2SH = strRedeemScript . length ( ) > 0 ;
2017-01-27 02:33:45 +01:00
const std : : string & output = isScript ? scriptPubKey . get_str ( ) : scriptPubKey [ " address " ] . get_str ( ) ;
2016-06-16 16:57:48 +02:00
// Parse the output.
CScript script ;
2017-08-23 03:02:33 +02:00
CTxDestination dest ;
2016-06-16 16:57:48 +02:00
if ( ! isScript ) {
2017-08-23 03:02:33 +02:00
dest = DecodeDestination ( output ) ;
if ( ! IsValidDestination ( dest ) ) {
2017-02-13 23:54:51 +01:00
throw JSONRPCError ( RPC_INVALID_ADDRESS_OR_KEY , " Invalid address " ) ;
}
2017-08-23 03:02:33 +02:00
script = GetScriptForDestination ( dest ) ;
2016-06-16 16:57:48 +02:00
} else {
if ( ! IsHex ( output ) ) {
throw JSONRPCError ( RPC_INVALID_ADDRESS_OR_KEY , " Invalid scriptPubKey " ) ;
}
std : : vector < unsigned char > vData ( ParseHex ( output ) ) ;
script = CScript ( vData . begin ( ) , vData . end ( ) ) ;
}
// Watchonly and private keys
if ( watchOnly & & keys . size ( ) ) {
throw JSONRPCError ( RPC_INVALID_PARAMETER , " Incompatibility found between watchonly and keys " ) ;
}
// Internal + Label
if ( internal & & data . exists ( " label " ) ) {
throw JSONRPCError ( RPC_INVALID_PARAMETER , " Incompatibility found between internal and label " ) ;
}
// Not having Internal + Script
if ( ! internal & & isScript ) {
throw JSONRPCError ( RPC_INVALID_PARAMETER , " Internal must be set for hex scriptPubKey " ) ;
}
// Keys / PubKeys size check.
if ( ! isP2SH & & ( keys . size ( ) > 1 | | pubKeys . size ( ) > 1 ) ) { // Address / scriptPubKey
throw JSONRPCError ( RPC_INVALID_PARAMETER , " More than private key given for one address " ) ;
}
// Invalid P2SH redeemScript
if ( isP2SH & & ! IsHex ( strRedeemScript ) ) {
throw JSONRPCError ( RPC_INVALID_ADDRESS_OR_KEY , " Invalid redeem script " ) ;
}
// Process. //
// P2SH
if ( isP2SH ) {
// Import redeem script.
std : : vector < unsigned char > vData ( ParseHex ( strRedeemScript ) ) ;
CScript redeemScript = CScript ( vData . begin ( ) , vData . end ( ) ) ;
// Invalid P2SH address
if ( ! script . IsPayToScriptHash ( ) ) {
throw JSONRPCError ( RPC_INVALID_ADDRESS_OR_KEY , " Invalid P2SH address / script " ) ;
}
2016-09-09 07:32:12 +02:00
pwallet - > MarkDirty ( ) ;
2016-06-16 16:57:48 +02:00
2017-02-21 16:53:07 +01:00
if ( ! pwallet - > AddWatchOnly ( redeemScript , timestamp ) ) {
2016-06-16 16:57:48 +02:00
throw JSONRPCError ( RPC_WALLET_ERROR , " Error adding address to wallet " ) ;
}
2016-09-09 07:32:12 +02:00
if ( ! pwallet - > HaveCScript ( redeemScript ) & & ! pwallet - > AddCScript ( redeemScript ) ) {
2016-06-16 16:57:48 +02:00
throw JSONRPCError ( RPC_WALLET_ERROR , " Error adding p2sh redeemScript to wallet " ) ;
}
2017-08-23 03:02:33 +02:00
CTxDestination redeem_dest = CScriptID ( redeemScript ) ;
CScript redeemDestination = GetScriptForDestination ( redeem_dest ) ;
2016-06-16 16:57:48 +02:00
2016-09-09 07:32:12 +02:00
if ( : : IsMine ( * pwallet , redeemDestination ) = = ISMINE_SPENDABLE ) {
2016-06-16 16:57:48 +02:00
throw JSONRPCError ( RPC_WALLET_ERROR , " The wallet already contains the private key for this address or script " ) ;
}
2016-09-09 07:32:12 +02:00
pwallet - > MarkDirty ( ) ;
2016-06-16 16:57:48 +02:00
2017-02-21 16:53:07 +01:00
if ( ! pwallet - > AddWatchOnly ( redeemDestination , timestamp ) ) {
2016-06-16 16:57:48 +02:00
throw JSONRPCError ( RPC_WALLET_ERROR , " Error adding address to wallet " ) ;
}
// add to address book or update label
2017-08-23 03:02:33 +02:00
if ( IsValidDestination ( dest ) ) {
pwallet - > SetAddressBook ( dest , label , " receive " ) ;
2016-06-16 16:57:48 +02:00
}
// Import private keys.
if ( keys . size ( ) ) {
for ( size_t i = 0 ; i < keys . size ( ) ; i + + ) {
2017-01-27 02:33:45 +01:00
const std : : string & privkey = keys [ i ] . get_str ( ) ;
2016-06-16 16:57:48 +02:00
CBitcoinSecret vchSecret ;
bool fGood = vchSecret . SetString ( privkey ) ;
if ( ! fGood ) {
throw JSONRPCError ( RPC_INVALID_ADDRESS_OR_KEY , " Invalid private key encoding " ) ;
}
CKey key = vchSecret . GetKey ( ) ;
if ( ! key . IsValid ( ) ) {
throw JSONRPCError ( RPC_INVALID_ADDRESS_OR_KEY , " Private key outside allowed range " ) ;
}
CPubKey pubkey = key . GetPubKey ( ) ;
assert ( key . VerifyPubKey ( pubkey ) ) ;
CKeyID vchAddress = pubkey . GetID ( ) ;
2016-09-09 07:32:12 +02:00
pwallet - > MarkDirty ( ) ;
pwallet - > SetAddressBook ( vchAddress , label , " receive " ) ;
2016-06-16 16:57:48 +02:00
2016-09-09 07:32:12 +02:00
if ( pwallet - > HaveKey ( vchAddress ) ) {
2016-06-16 16:57:48 +02:00
throw JSONRPCError ( RPC_INVALID_ADDRESS_OR_KEY , " Already have this key " ) ;
}
2016-09-09 07:32:12 +02:00
pwallet - > mapKeyMetadata [ vchAddress ] . nCreateTime = timestamp ;
2016-06-16 16:57:48 +02:00
2016-09-09 07:32:12 +02:00
if ( ! pwallet - > AddKeyPubKey ( key , pubkey ) ) {
2016-06-16 16:57:48 +02:00
throw JSONRPCError ( RPC_WALLET_ERROR , " Error adding key to wallet " ) ;
}
2016-09-09 07:32:12 +02:00
pwallet - > UpdateTimeFirstKey ( timestamp ) ;
2016-06-16 16:57:48 +02:00
}
}
success = true ;
} else {
// Import public keys.
if ( pubKeys . size ( ) & & keys . size ( ) = = 0 ) {
2017-01-27 02:33:45 +01:00
const std : : string & strPubKey = pubKeys [ 0 ] . get_str ( ) ;
2016-06-16 16:57:48 +02:00
if ( ! IsHex ( strPubKey ) ) {
throw JSONRPCError ( RPC_INVALID_ADDRESS_OR_KEY , " Pubkey must be a hex string " ) ;
}
2016-10-20 12:31:05 +02:00
std : : vector < unsigned char > vData ( ParseHex ( strPubKey ) ) ;
CPubKey pubKey ( vData . begin ( ) , vData . end ( ) ) ;
2016-06-16 16:57:48 +02:00
if ( ! pubKey . IsFullyValid ( ) ) {
throw JSONRPCError ( RPC_INVALID_ADDRESS_OR_KEY , " Pubkey is not a valid public key " ) ;
}
2017-08-23 03:02:33 +02:00
CTxDestination pubkey_dest = pubKey . GetID ( ) ;
2016-10-19 16:17:42 +02:00
// Consistency check.
2017-08-23 03:02:33 +02:00
if ( ! isScript & & ! ( pubkey_dest = = dest ) ) {
2016-10-19 16:17:42 +02:00
throw JSONRPCError ( RPC_INVALID_ADDRESS_OR_KEY , " Consistency check failed " ) ;
}
// Consistency check.
if ( isScript ) {
CTxDestination destination ;
if ( ExtractDestination ( script , destination ) ) {
2017-08-23 03:02:33 +02:00
if ( ! ( destination = = pubkey_dest ) ) {
2016-10-19 16:17:42 +02:00
throw JSONRPCError ( RPC_INVALID_ADDRESS_OR_KEY , " Consistency check failed " ) ;
}
}
}
2017-08-23 03:02:33 +02:00
CScript pubKeyScript = GetScriptForDestination ( pubkey_dest ) ;
2016-06-16 16:57:48 +02:00
2016-09-09 07:32:12 +02:00
if ( : : IsMine ( * pwallet , pubKeyScript ) = = ISMINE_SPENDABLE ) {
2016-06-16 16:57:48 +02:00
throw JSONRPCError ( RPC_WALLET_ERROR , " The wallet already contains the private key for this address or script " ) ;
}
2016-09-09 07:32:12 +02:00
pwallet - > MarkDirty ( ) ;
2016-06-16 16:57:48 +02:00
2017-02-21 16:53:07 +01:00
if ( ! pwallet - > AddWatchOnly ( pubKeyScript , timestamp ) ) {
2016-06-16 16:57:48 +02:00
throw JSONRPCError ( RPC_WALLET_ERROR , " Error adding address to wallet " ) ;
}
// add to address book or update label
2017-08-23 03:02:33 +02:00
if ( IsValidDestination ( pubkey_dest ) ) {
pwallet - > SetAddressBook ( pubkey_dest , label , " receive " ) ;
2016-06-16 16:57:48 +02:00
}
// TODO Is this necessary?
CScript scriptRawPubKey = GetScriptForRawPubKey ( pubKey ) ;
2016-09-09 07:32:12 +02:00
if ( : : IsMine ( * pwallet , scriptRawPubKey ) = = ISMINE_SPENDABLE ) {
2016-06-16 16:57:48 +02:00
throw JSONRPCError ( RPC_WALLET_ERROR , " The wallet already contains the private key for this address or script " ) ;
}
2016-09-09 07:32:12 +02:00
pwallet - > MarkDirty ( ) ;
2016-06-16 16:57:48 +02:00
2017-02-21 16:53:07 +01:00
if ( ! pwallet - > AddWatchOnly ( scriptRawPubKey , timestamp ) ) {
2016-06-16 16:57:48 +02:00
throw JSONRPCError ( RPC_WALLET_ERROR , " Error adding address to wallet " ) ;
}
success = true ;
}
// Import private keys.
if ( keys . size ( ) ) {
2017-01-27 02:33:45 +01:00
const std : : string & strPrivkey = keys [ 0 ] . get_str ( ) ;
2016-06-16 16:57:48 +02:00
// Checks.
CBitcoinSecret vchSecret ;
bool fGood = vchSecret . SetString ( strPrivkey ) ;
if ( ! fGood ) {
throw JSONRPCError ( RPC_INVALID_ADDRESS_OR_KEY , " Invalid private key encoding " ) ;
}
CKey key = vchSecret . GetKey ( ) ;
if ( ! key . IsValid ( ) ) {
throw JSONRPCError ( RPC_INVALID_ADDRESS_OR_KEY , " Private key outside allowed range " ) ;
}
CPubKey pubKey = key . GetPubKey ( ) ;
assert ( key . VerifyPubKey ( pubKey ) ) ;
2017-08-23 03:02:33 +02:00
CTxDestination pubkey_dest = pubKey . GetID ( ) ;
2016-10-19 16:17:42 +02:00
// Consistency check.
2017-08-23 03:02:33 +02:00
if ( ! isScript & & ! ( pubkey_dest = = dest ) ) {
2016-10-19 16:17:42 +02:00
throw JSONRPCError ( RPC_INVALID_ADDRESS_OR_KEY , " Consistency check failed " ) ;
}
// Consistency check.
if ( isScript ) {
CTxDestination destination ;
if ( ExtractDestination ( script , destination ) ) {
2017-08-23 03:02:33 +02:00
if ( ! ( destination = = pubkey_dest ) ) {
2016-10-19 16:17:42 +02:00
throw JSONRPCError ( RPC_INVALID_ADDRESS_OR_KEY , " Consistency check failed " ) ;
}
}
}
CKeyID vchAddress = pubKey . GetID ( ) ;
2016-09-09 07:32:12 +02:00
pwallet - > MarkDirty ( ) ;
pwallet - > SetAddressBook ( vchAddress , label , " receive " ) ;
2016-06-16 16:57:48 +02:00
2016-09-09 07:32:12 +02:00
if ( pwallet - > HaveKey ( vchAddress ) ) {
2017-10-11 12:12:59 +02:00
throw JSONRPCError ( RPC_WALLET_ERROR , " The wallet already contains the private key for this address or script " ) ;
2016-06-16 16:57:48 +02:00
}
2016-09-09 07:32:12 +02:00
pwallet - > mapKeyMetadata [ vchAddress ] . nCreateTime = timestamp ;
2016-06-16 16:57:48 +02:00
2016-09-09 07:32:12 +02:00
if ( ! pwallet - > AddKeyPubKey ( key , pubKey ) ) {
2016-06-16 16:57:48 +02:00
throw JSONRPCError ( RPC_WALLET_ERROR , " Error adding key to wallet " ) ;
}
2016-09-09 07:32:12 +02:00
pwallet - > UpdateTimeFirstKey ( timestamp ) ;
2016-06-16 16:57:48 +02:00
success = true ;
}
// Import scriptPubKey only.
if ( pubKeys . size ( ) = = 0 & & keys . size ( ) = = 0 ) {
2016-09-09 07:32:12 +02:00
if ( : : IsMine ( * pwallet , script ) = = ISMINE_SPENDABLE ) {
2016-06-16 16:57:48 +02:00
throw JSONRPCError ( RPC_WALLET_ERROR , " The wallet already contains the private key for this address or script " ) ;
}
2016-09-09 07:32:12 +02:00
pwallet - > MarkDirty ( ) ;
2016-06-16 16:57:48 +02:00
2017-02-21 16:53:07 +01:00
if ( ! pwallet - > AddWatchOnly ( script , timestamp ) ) {
2016-06-16 16:57:48 +02:00
throw JSONRPCError ( RPC_WALLET_ERROR , " Error adding address to wallet " ) ;
}
if ( scriptPubKey . getType ( ) = = UniValue : : VOBJ ) {
// add to address book or update label
2017-08-23 03:02:33 +02:00
if ( IsValidDestination ( dest ) ) {
pwallet - > SetAddressBook ( dest , label , " receive " ) ;
2016-06-16 16:57:48 +02:00
}
}
success = true ;
}
}
UniValue result = UniValue ( UniValue : : VOBJ ) ;
result . pushKV ( " success " , UniValue ( success ) ) ;
return result ;
} catch ( const UniValue & e ) {
UniValue result = UniValue ( UniValue : : VOBJ ) ;
result . pushKV ( " success " , UniValue ( false ) ) ;
result . pushKV ( " error " , e ) ;
return result ;
} catch ( . . . ) {
UniValue result = UniValue ( UniValue : : VOBJ ) ;
result . pushKV ( " success " , UniValue ( false ) ) ;
result . pushKV ( " error " , JSONRPCError ( RPC_MISC_ERROR , " Missing required fields " ) ) ;
return result ;
}
}
2017-02-03 22:23:13 +01:00
int64_t GetImportTimestamp ( const UniValue & data , int64_t now )
{
if ( data . exists ( " timestamp " ) ) {
const UniValue & timestamp = data [ " timestamp " ] ;
if ( timestamp . isNum ( ) ) {
return timestamp . get_int64 ( ) ;
} else if ( timestamp . isStr ( ) & & timestamp . get_str ( ) = = " now " ) {
return now ;
}
throw JSONRPCError ( RPC_TYPE_ERROR , strprintf ( " Expected number or \" now \" timestamp value for key. got type %s " , uvTypeName ( timestamp . type ( ) ) ) ) ;
}
throw JSONRPCError ( RPC_TYPE_ERROR , " Missing required timestamp field for key " ) ;
}
2016-06-16 16:57:48 +02:00
UniValue importmulti ( const JSONRPCRequest & mainRequest )
{
2016-10-25 09:45:57 +02:00
CWallet * const pwallet = GetWalletForJSONRPCRequest ( mainRequest ) ;
2017-01-07 20:15:22 +01:00
if ( ! EnsureWalletIsAvailable ( pwallet , mainRequest . fHelp ) ) {
return NullUniValue ;
}
2016-10-25 09:45:57 +02:00
2016-06-16 16:57:48 +02:00
// clang-format off
if ( mainRequest . fHelp | | mainRequest . params . size ( ) < 1 | | mainRequest . params . size ( ) > 2 )
2017-01-27 02:33:45 +01:00
throw std : : runtime_error (
2017-07-10 17:43:41 +02:00
" importmulti \" requests \" ( \" options \" ) \n \n "
2017-09-08 14:19:25 +02:00
" Import addresses/scripts (with private or public keys, redeem script (P2SH)), rescanning all addresses in one-shot-only (rescan can be disabled via options). Requires a new wallet backup. \n \n "
2016-06-16 16:57:48 +02:00
" Arguments: \n "
2016-11-21 14:32:36 +01:00
" 1. requests (array, required) Data to be imported \n "
2016-06-16 16:57:48 +02:00
" [ (array of json objects) \n "
" { \n "
" \" scriptPubKey \" : \" <script> \" | { \" address \" : \" <address> \" }, (string / json, required) Type of scriptPubKey (string for script, json for address) \n "
2017-02-03 22:23:13 +01:00
" \" timestamp \" : timestamp | \" now \" , (integer / string, required) Creation time of the key in seconds since epoch (Jan 1 1970 GMT), \n "
" or the string \" now \" to substitute the current synced blockchain time. The timestamp of the oldest \n "
" key will determine how far back blockchain rescans need to begin for missing wallet transactions. \n "
" \" now \" can be specified to bypass scanning, for keys which are known to never have been used, and \n "
2017-02-14 23:39:26 +01:00
" 0 can be specified to scan the entire blockchain. Blocks up to 2 hours before the earliest key \n "
" creation time of all keys being imported by the importmulti call will be scanned. \n "
2016-06-16 16:57:48 +02:00
" \" redeemscript \" : \" <script> \" , (string, optional) Allowed only if the scriptPubKey is a P2SH address or a P2SH scriptPubKey \n "
" \" pubkeys \" : [ \" <pubKey> \" , ... ] , (array, optional) Array of strings giving pubkeys that must occur in the output or redeemscript \n "
" \" keys \" : [ \" <key> \" , ... ] , (array, optional) Array of strings giving private keys whose corresponding public keys must occur in the output or redeemscript \n "
2017-06-20 00:57:31 +02:00
" \" internal \" : <true> , (boolean, optional, default: false) Stating whether matching outputs should be treated as not incoming payments \n "
2016-06-16 16:57:48 +02:00
" \" watchonly \" : <true> , (boolean, optional, default: false) Stating whether matching outputs should be considered watched even when they're not spendable, only allowed if keys are empty \n "
" \" label \" : <label> , (string, optional, default: '') Label to assign to the address (aka account name, for now), only allowed with internal=false \n "
" } \n "
" ,... \n "
" ] \n "
2016-11-21 14:32:36 +01:00
" 2. options (json, optional) \n "
2016-06-16 16:57:48 +02:00
" { \n "
" \" rescan \" : <false>, (boolean, optional, default: true) Stating if should rescan the blockchain after all imports \n "
" } \n "
2018-01-05 21:43:31 +01:00
" \n Note: This call can take minutes to complete if rescan is true, during that time, other rpc calls \n "
" may report that the imported keys, addresses or scripts exists but related transactions are still missing. \n "
2016-06-16 16:57:48 +02:00
" \n Examples: \n " +
HelpExampleCli ( " importmulti " , " '[{ \" scriptPubKey \" : { \" address \" : \" <my address> \" }, \" timestamp \" :1455191478 }, "
" { \" scriptPubKey \" : { \" address \" : \" <my 2nd address> \" }, \" label \" : \" example 2 \" , \" timestamp \" : 1455191480 }]' " ) +
HelpExampleCli ( " importmulti " , " '[{ \" scriptPubKey \" : { \" address \" : \" <my address> \" }, \" timestamp \" :1455191478 }]' '{ \" rescan \" : false}' " ) +
" \n Response is an array with the same size as the input that has the execution result : \n "
" [{ \" success \" : true } , { \" success \" : false, \" error \" : { \" code \" : -1, \" message \" : \" Internal Server Error \" } }, ... ] \n " ) ;
// clang-format on
2017-06-06 21:15:28 +02:00
RPCTypeCheck ( mainRequest . params , { UniValue : : VARR , UniValue : : VOBJ } ) ;
2016-06-16 16:57:48 +02:00
const UniValue & requests = mainRequest . params [ 0 ] ;
//Default options
bool fRescan = true ;
2017-07-10 17:44:39 +02:00
if ( ! mainRequest . params [ 1 ] . isNull ( ) ) {
2016-06-16 16:57:48 +02:00
const UniValue & options = mainRequest . params [ 1 ] ;
if ( options . exists ( " rescan " ) ) {
fRescan = options [ " rescan " ] . get_bool ( ) ;
}
}
2017-12-08 22:07:37 +01:00
WalletRescanReserver reserver ( pwallet ) ;
if ( fRescan & & ! reserver . reserve ( ) ) {
throw JSONRPCError ( RPC_WALLET_ERROR , " Wallet is currently rescanning. Abort existing rescan or wait. " ) ;
}
2017-09-08 01:29:59 +02:00
int64_t now = 0 ;
2016-06-16 16:57:48 +02:00
bool fRunScan = false ;
2016-11-10 08:11:51 +01:00
int64_t nLowestTimestamp = 0 ;
2016-06-16 16:57:48 +02:00
UniValue response ( UniValue : : VARR ) ;
2017-09-08 01:29:59 +02:00
{
LOCK2 ( cs_main , pwallet - > cs_wallet ) ;
EnsureWalletIsUnlocked ( pwallet ) ;
2016-06-16 16:57:48 +02:00
2017-09-08 01:29:59 +02:00
// Verify all timestamps are present before importing any keys.
now = chainActive . Tip ( ) ? chainActive . Tip ( ) - > GetMedianTimePast ( ) : 0 ;
for ( const UniValue & data : requests . getValues ( ) ) {
GetImportTimestamp ( data , now ) ;
2016-06-16 16:57:48 +02:00
}
2017-09-08 01:29:59 +02:00
const int64_t minimumTimestamp = 1 ;
if ( fRescan & & chainActive . Tip ( ) ) {
nLowestTimestamp = chainActive . Tip ( ) - > GetBlockTime ( ) ;
} else {
fRescan = false ;
2016-06-16 16:57:48 +02:00
}
2017-09-08 01:29:59 +02:00
for ( const UniValue & data : requests . getValues ( ) ) {
const int64_t timestamp = std : : max ( GetImportTimestamp ( data , now ) , minimumTimestamp ) ;
const UniValue result = ProcessImport ( pwallet , data , timestamp ) ;
response . push_back ( result ) ;
if ( ! fRescan ) {
continue ;
}
// If at least one request was successful then allow rescan.
if ( result [ " success " ] . get_bool ( ) ) {
fRunScan = true ;
}
// Get the lowest timestamp.
if ( timestamp < nLowestTimestamp ) {
nLowestTimestamp = timestamp ;
}
2016-06-16 16:57:48 +02:00
}
}
2017-02-14 15:38:29 +01:00
if ( fRescan & & fRunScan & & requests . size ( ) ) {
2017-12-13 00:13:58 +01:00
int64_t scannedTime = pwallet - > RescanFromTime ( nLowestTimestamp , reserver , true /* update */ ) ;
2017-03-02 21:24:50 +01:00
pwallet - > ReacceptWalletTransactions ( ) ;
2017-02-16 16:49:03 +01:00
2017-06-22 23:16:24 +02:00
if ( scannedTime > nLowestTimestamp ) {
2017-02-16 16:49:03 +01:00
std : : vector < UniValue > results = response . getValues ( ) ;
response . clear ( ) ;
response . setArray ( ) ;
size_t i = 0 ;
for ( const UniValue & request : requests . getValues ( ) ) {
// If key creation date is within the successfully scanned
// range, or if the import result already has an error set, let
// the result stand unmodified. Otherwise replace the result
// with an error message.
2017-06-22 23:16:24 +02:00
if ( scannedTime < = GetImportTimestamp ( request , now ) | | results . at ( i ) . exists ( " error " ) ) {
2017-02-16 16:49:03 +01:00
response . push_back ( results . at ( i ) ) ;
} else {
UniValue result = UniValue ( UniValue : : VOBJ ) ;
result . pushKV ( " success " , UniValue ( false ) ) ;
2017-05-15 15:11:03 +02:00
result . pushKV (
" error " ,
JSONRPCError (
RPC_MISC_ERROR ,
strprintf ( " Rescan failed for key with creation timestamp %d. There was an error reading a "
" block from time %d, which is after or within %d seconds of key creation, and "
" could contain transactions pertaining to the key. As a result, transactions "
" and coins using this key may not appear in the wallet. This error could be "
" caused by pruning or data corruption (see bitcoind log for details) and could "
" be dealt with by downloading and rescanning the relevant blocks (see -reindex "
" and -rescan options). " ,
2017-06-22 23:16:24 +02:00
GetImportTimestamp ( request , now ) , scannedTime - TIMESTAMP_WINDOW - 1 , TIMESTAMP_WINDOW ) ) ) ;
2017-02-16 16:49:03 +01:00
response . push_back ( std : : move ( result ) ) ;
}
2017-02-22 20:11:44 +01:00
+ + i ;
2017-02-16 16:49:03 +01:00
}
}
2016-06-16 16:57:48 +02:00
}
return response ;
}