mirror of
https://github.com/haveno-dex/haveno.git
synced 2025-07-27 17:05:29 -04:00
separate wallet addresses
This commit is contained in:
parent
24fdb06a90
commit
205259bee9
34 changed files with 822 additions and 366 deletions
src/main/java/io/bitsquare/btc
|
@ -3,12 +3,18 @@ package io.bitsquare.btc;
|
|||
import com.google.bitcoin.core.NetworkParameters;
|
||||
import com.google.bitcoin.core.Wallet;
|
||||
import com.google.bitcoin.crypto.KeyCrypter;
|
||||
import com.google.bitcoin.wallet.CoinSelector;
|
||||
import org.slf4j.Logger;
|
||||
import org.slf4j.LoggerFactory;
|
||||
|
||||
public class BitSquareWallet extends Wallet
|
||||
import java.io.Serializable;
|
||||
|
||||
public class BitSquareWallet extends Wallet implements Serializable
|
||||
{
|
||||
private static final Logger log = LoggerFactory.getLogger(BitSquareWallet.class);
|
||||
private static final long serialVersionUID = -6231929674475881549L;
|
||||
|
||||
private transient CoinSelector coinSelector = new AddressBasedCoinSelector();
|
||||
|
||||
public BitSquareWallet(NetworkParameters params)
|
||||
{
|
||||
|
@ -20,4 +26,5 @@ public class BitSquareWallet extends Wallet
|
|||
super(params, keyCrypter);
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue