Re: Import money from another wallet

2019-02-25 Thread Andreas Schildbach
There is no hard limit. But it keeps the entire wallet in memory, so at some point you'll run into the limits of your resources. Bitcoinj wallets are not meant to be used in a multi-user way, like for some kind of wallet-hosting. Also see https://bitcoinj.github.io/limitations On 25/02/2019 12.

Re: Import money from another wallet

2019-02-25 Thread luong nguyen duc
Hu @Andreas, Does Bitcoinj limit how many addresses we can import using Wallet.importKey()? In my application, I generate many random addresses (not use the currentReceiveAddress()) for each user, I'm not sure if it would cause any issue, Thank you, On Monday, February 25, 2019 at 5:50:05

Re: Import money from another wallet

2019-02-25 Thread Andreas Schildbach
On 19/01/2019 20.26, Danielecker1993 wrote: > Thanks. And practically, how I do this in BitcoinJ ? You can use Wallet.importKey() or .importKeys() to import keys into your wallet. The replaying is described here: https://bitcoinj.github.io/working-with-the-wallet -- You received this message

Re: Import money from another wallet

2019-02-25 Thread Andreas Schildbach
People import private keys they haven't created themselves (e.g. paper wallets) into their wallet and then send Bitcoins to it. This has been used to steal Bitcoins in the past, by offering paper wallets with "free" Bitcoins. On 19/01/2019 14.58, Stephen Davis wrote: > Can you outline the exact s