final DeterministicSeed seed = createDeterministicSeed();
_bitcoinManager.getCurrencyCoin().getWalletManager().addListener(new Service.Listener() {
@Override
public void terminated(Service.State from) {
super.terminated(from);
WalletAppKit appKit = setupWallet();
appKit.setDownloadListener(BitcoinRecoverAction.this)
.setBlockingStartup(false)
.setUserAgent(ServiceConsts.SERVICE_APP_NAME, "0.1")
.restoreWalletFromSeed(seed);
_bitcoinManager.getCurrencyCoin().setWalletManager(appKit);
_bitcoinManager.getCurrencyCoin().getWalletManager().startAsync();
}
}, Executors.newSingleThreadExecutor());
_bitcoinManager.getCurrencyCoin().getWalletManager().stopAsync();
Yes I did.
Thing is, it worked at one point with one wallet I was testing for a while. But recently it doesn't. I've being trying to create wallets and recover them.
Could it be anything related to the age of the wallet? Does it need to be included in an "x" number of blocks? Or something with the deterministic seed?
Thanks a million
Bruno
You received this message because you are subscribed to a topic in the Google Groups "bitcoinj" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/bitcoinj/EOViGz2xTZw/unsubscribe.
To unsubscribe from this group and all its topics, send an email to bitcoinj+u...@googlegroups.com.