I'm using the java web3j lib and creating a new wallet file using:
WalletUtils.generateFullNewWalletFile()
With:
Web3j web3 = Web3j.build(new HttpService());
... I'm connecting to my local private blockchain running geth.
The question is. How can I add some test either to my wallet and what is the context between my local created wallet and the geth client I'm running.
How can I connect the web3j created wallet with to the geth client?
With:
WalletUtils.loadCredentials()
.. I am able the get the wallets public address but the account is not listed in the geth client when I am using:
web3.ethAccounts().send().getAccounts()
How this fits together?