From 416938dfaad88bae6343af9d76051f41409e223f Mon Sep 17 00:00:00 2001 From: Andrey Bronin Date: Wed, 30 Apr 2025 16:48:44 +0300 Subject: [PATCH] add 0g Galileo testnet (#658) --- emerald-grpc | 2 +- foundation/src/main/resources/public | 2 +- .../emeraldpay/dshackle/upstream/lowerbound/LowerBoundData.kt | 2 ++ 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/emerald-grpc b/emerald-grpc index 45db4d69..3b46c590 160000 --- a/emerald-grpc +++ b/emerald-grpc @@ -1 +1 @@ -Subproject commit 45db4d6938b2a48b4da44c6bc5c21f986a4ac044 +Subproject commit 3b46c590db6a631fcb6ed4a4224678dae2586ebd diff --git a/foundation/src/main/resources/public b/foundation/src/main/resources/public index 7a0b1578..b47a9386 160000 --- a/foundation/src/main/resources/public +++ b/foundation/src/main/resources/public @@ -1 +1 @@ -Subproject commit 7a0b15781b798edb69c246897aa16c58c3f8522c +Subproject commit b47a93861c67a79375f65a84e4941ba11fe9571c diff --git a/src/main/kotlin/io/emeraldpay/dshackle/upstream/lowerbound/LowerBoundData.kt b/src/main/kotlin/io/emeraldpay/dshackle/upstream/lowerbound/LowerBoundData.kt index 110a93f3..c4ca05f2 100644 --- a/src/main/kotlin/io/emeraldpay/dshackle/upstream/lowerbound/LowerBoundData.kt +++ b/src/main/kotlin/io/emeraldpay/dshackle/upstream/lowerbound/LowerBoundData.kt @@ -34,5 +34,7 @@ fun BlockchainOuterClass.LowerBoundType.fromProtoType(): LowerBoundType { BlockchainOuterClass.LowerBoundType.LOWER_BOUND_LOGS -> LowerBoundType.LOGS BlockchainOuterClass.LowerBoundType.LOWER_BOUND_TRACE -> LowerBoundType.TRACE BlockchainOuterClass.LowerBoundType.LOWER_BOUND_PROOF -> LowerBoundType.PROOF + BlockchainOuterClass.LowerBoundType.LOWER_BOUND_BLOB -> LowerBoundType.UNKNOWN + BlockchainOuterClass.LowerBoundType.LOWER_BOUND_EPOCH -> LowerBoundType.UNKNOWN } }