mirror of
https://github.com/bisq-network/bisq.git
synced 2025-03-03 10:46:54 +01:00
Merge pull request #6219 from ghubstan/wip-prep-bisq-for-bitcoin-v23
Prepare Bisq for bitcoin-core v23 compatiblity
This commit is contained in:
commit
bca997a55b
2 changed files with 6 additions and 2 deletions
|
@ -41,7 +41,7 @@ public class BtcWalletTest extends MethodTest {
|
|||
@BeforeAll
|
||||
public static void setUp() {
|
||||
startSupportingApps(false,
|
||||
true,
|
||||
false,
|
||||
bitcoind,
|
||||
seednode,
|
||||
alicedaemon,
|
||||
|
|
|
@ -91,7 +91,11 @@ public class DtoNetworkInfo {
|
|||
|
||||
@RequiredArgsConstructor
|
||||
public enum NetworkType {
|
||||
IPV4("ipv4"), IPV6("ipv6"), ONION("onion"), I2P("i2p");
|
||||
IPV4("ipv4"),
|
||||
IPV6("ipv6"),
|
||||
ONION("onion"),
|
||||
I2P("i2p"),
|
||||
CJDNS("cjdns");
|
||||
|
||||
@Getter(onMethod_ = @JsonValue)
|
||||
private final String name;
|
||||
|
|
Loading…
Add table
Reference in a new issue