Skip to content

Commit dfa34e7

Browse files
chore: DirectDebitInfo and DirectDebit fields made public - no purpose of having all fields as internal in a public model;
1 parent 01f3a86 commit dfa34e7

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

Sources/web3swift/Tokens/ERC1376/Web3+ERC1376.swift

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -18,14 +18,14 @@ public enum IERC1376DelegateMode: UInt {
1818
}
1919

2020
public struct DirectDebitInfo {
21-
let amount: BigUInt
22-
let startTime: BigUInt
23-
let interval: BigUInt
21+
public let amount: BigUInt
22+
public let startTime: BigUInt
23+
public let interval: BigUInt
2424
}
2525

2626
public struct DirectDebit {
27-
let info: DirectDebitInfo
28-
let epoch: BigUInt
27+
public let info: DirectDebitInfo
28+
public let epoch: BigUInt
2929
}
3030

3131
extension DirectDebit: Hashable {

0 commit comments

Comments
 (0)