Skip to content

Commit e282683

Browse files
committed
Remove unused parameter from BlockchairApi response
1 parent 3714131 commit e282683

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

Sources/BitcoinCore/Classes/ApiSync/BlockchairSync/BlockchairResponse.swift

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,14 +59,12 @@ struct BlockchairTransactionsReponse: ImmutableMappable {
5959
struct Transaction: ImmutableMappable, Hashable {
6060
let blockId: Int?
6161
let hash: String
62-
let time: Int
6362
let balanceChange: Int
6463
let address: String
6564

6665
init(map: Map) throws {
6766
blockId = try map.value("block_id")
6867
hash = try map.value("hash")
69-
time = try map.value("time", using: BlockchairResponse.dateStringToTimestampTransform)
7068
balanceChange = try map.value("balance_change")
7169
address = try map.value("address")
7270
}

0 commit comments

Comments
 (0)