Importing private key to bitcoin node is slow. Can it be faster?

0

I have launched the bitcoin node and synchronized it. The issue is that importing the private key forces the node to scan the blockchain for the operations with the key. Is there a way to import the key in a fast way?

shalakhin

Posted 2019-07-22T10:19:45.183

Reputation: 103

2You can skip the rescan, but then you won't have transactions and can't spend existing outputs to it. Or if it was a recently created key, you can specify its birth time using importmulti, which will only rescan the chain after that point.Pieter Wuille 2019-07-22T15:56:06.287

Answers

0

No.

Bitcoin core is a full node and doesn't use SPV or any equivalent. Therefore, when importing a private key, it must scan the Blockchain copy it holds rather than trust third parties.

Sweeping the private key into Bitcoin core ought to be faster.

RedGrittyBrick

Posted 2019-07-22T10:19:45.183

Reputation: 4 815

thank you for the answershalakhin 2019-07-22T14:55:45.247