diff --git a/Sources/ZcashLightClientKit/Entity/TransactionEntity.swift b/Sources/ZcashLightClientKit/Entity/TransactionEntity.swift index 245cada3..2a2189b5 100644 --- a/Sources/ZcashLightClientKit/Entity/TransactionEntity.swift +++ b/Sources/ZcashLightClientKit/Entity/TransactionEntity.swift @@ -65,6 +65,7 @@ public enum ZcashTransaction { public enum Pool { case transaparent case sapling + case orchard case other(Int) init(rawValue: Int) { switch rawValue { @@ -72,6 +73,8 @@ public enum ZcashTransaction { self = .transaparent case 2: self = .sapling + case 3: + self = .orchard default: self = .other(rawValue) }