Skip to content

Commit 12b312f

Browse files
Merge pull request #696 from JeneaVranceanu/fix/access-modifier
fix: set public access modifier to FeeHistory struct members
2 parents e90c225 + b097e64 commit 12b312f

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

Sources/Core/Oracle/GasOracle.swift

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -226,11 +226,11 @@ public extension Oracle {
226226

227227
extension Oracle {
228228
public struct FeeHistory {
229-
let timestamp = Date()
230-
let baseFeePerGas: [BigUInt]
231-
let gasUsedRatio: [Double]
232-
let oldestBlock: BigUInt
233-
let reward: [[BigUInt]]
229+
public let timestamp = Date()
230+
public let baseFeePerGas: [BigUInt]
231+
public let gasUsedRatio: [Double]
232+
public let oldestBlock: BigUInt
233+
public let reward: [[BigUInt]]
234234
}
235235
}
236236

0 commit comments

Comments
 (0)