We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3714131 commit e282683Copy full SHA for e282683
Sources/BitcoinCore/Classes/ApiSync/BlockchairSync/BlockchairResponse.swift
@@ -59,14 +59,12 @@ struct BlockchairTransactionsReponse: ImmutableMappable {
59
struct Transaction: ImmutableMappable, Hashable {
60
let blockId: Int?
61
let hash: String
62
- let time: Int
63
let balanceChange: Int
64
let address: String
65
66
init(map: Map) throws {
67
blockId = try map.value("block_id")
68
hash = try map.value("hash")
69
- time = try map.value("time", using: BlockchairResponse.dateStringToTimestampTransform)
70
balanceChange = try map.value("balance_change")
71
address = try map.value("address")
72
}
0 commit comments