mirror of
https://github.com/haveno-dex/haveno.git
synced 2025-06-20 21:04:28 -04:00
payment process cleanup
This commit is contained in:
parent
5d9d7a9a3d
commit
1215f338ad
11 changed files with 407 additions and 604 deletions
23
src/main/java/io/bitsquare/btc/BitSquareWallet.java
Normal file
23
src/main/java/io/bitsquare/btc/BitSquareWallet.java
Normal file
|
@ -0,0 +1,23 @@
|
|||
package io.bitsquare.btc;
|
||||
|
||||
import com.google.bitcoin.core.NetworkParameters;
|
||||
import com.google.bitcoin.core.Wallet;
|
||||
import com.google.bitcoin.crypto.KeyCrypter;
|
||||
import org.slf4j.Logger;
|
||||
import org.slf4j.LoggerFactory;
|
||||
|
||||
public class BitSquareWallet extends Wallet
|
||||
{
|
||||
private static final Logger log = LoggerFactory.getLogger(BitSquareWallet.class);
|
||||
|
||||
public BitSquareWallet(NetworkParameters params)
|
||||
{
|
||||
super(params);
|
||||
}
|
||||
|
||||
public BitSquareWallet(NetworkParameters params, KeyCrypter keyCrypter)
|
||||
{
|
||||
super(params, keyCrypter);
|
||||
}
|
||||
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue