Merge pull request #6219 from ghubstan/wip-prep-bisq-for-bitcoin-v23

Prepare Bisq for bitcoin-core v23 compatiblity
This commit is contained in:
Christoph Atteneder 2022-07-05 09:05:08 +02:00 committed by GitHub
commit bca997a55b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 2 deletions

View file

@ -41,7 +41,7 @@ public class BtcWalletTest extends MethodTest {
@BeforeAll
public static void setUp() {
startSupportingApps(false,
true,
false,
bitcoind,
seednode,
alicedaemon,

View file

@ -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;