mirror of
https://github.com/bitcoinj/bitcoinj.git
synced 2025-01-19 05:33:44 +01:00
TestWithNetworkConnections: ask Wallet for an Address right away
Previously, it was asking for a key and converted manually.
This commit is contained in:
parent
16c90d2891
commit
46dcfc6bda
@ -22,7 +22,6 @@ import org.bitcoinj.base.Address;
|
||||
import org.bitcoinj.core.BlockChain;
|
||||
import org.bitcoinj.base.Coin;
|
||||
import org.bitcoinj.core.Context;
|
||||
import org.bitcoinj.crypto.ECKey;
|
||||
import org.bitcoinj.core.Message;
|
||||
import org.bitcoinj.core.NetworkParameters;
|
||||
import org.bitcoinj.core.Peer;
|
||||
@ -72,7 +71,6 @@ public class TestWithNetworkConnections {
|
||||
protected BlockStore blockStore;
|
||||
protected BlockChain blockChain;
|
||||
protected Wallet wallet;
|
||||
protected ECKey key;
|
||||
protected Address address;
|
||||
protected SocketAddress socketAddress;
|
||||
|
||||
@ -111,8 +109,7 @@ public class TestWithNetworkConnections {
|
||||
KeyChainGroup kcg = KeyChainGroup.builder(UNITTEST).lookaheadSize(4).lookaheadThreshold(2)
|
||||
.fromRandom(ScriptType.P2PKH).build();
|
||||
wallet = new Wallet(UNITTEST, kcg);
|
||||
key = wallet.freshReceiveKey();
|
||||
address = key.toAddress(ScriptType.P2PKH, UNITTEST.network());
|
||||
address = wallet.freshReceiveAddress(ScriptType.P2PKH);
|
||||
}
|
||||
blockChain = new BlockChain(UNITTEST, wallet, blockStore);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user