i am create watching wallet like this: 

Wallet wallet = Wallet.fromWatchingKeyB58(params, tPub, 
DeterministicHierarchy.BIP32_STANDARDISATION_TIME_SECS);
Address beforeSyncing = wallet.currentReceiveAddress();



and syncing using WalletAppkit like this: 



WalletAppKit kit = new WalletAppKit(params, walletFile, APP_NAME);
System.out.println("Syncing...");
kit.startAsync();
kit.awaitRunning();
System.out.println("done");
kit.chain().addWallet(wallet);


Address afterSync = kit.wallet().currentReceiveAddress();


both addresses are different, why are they different ?

what i have to do if need to get the same address as "beforeSyncing" ?

but "beforeSyncing" address is not listening to the transactions, i sent some 
testCoins on it but its not receving, keep showing 0 BTC.

is this created two wallets ?



-- 
You received this message because you are subscribed to the Google Groups 
"bitcoinj" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/d/optout.

Reply via email to