Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 13 additions & 13 deletions Client/Model/Account/InternalTransactionModel.swift
Original file line number Diff line number Diff line change
Expand Up @@ -9,19 +9,19 @@
import Foundation

public struct InternalTransactionModel: Codable {
let blockNumber: Int
let timeStamp: String
let hash: String
let from: String
let to: String?
let contractAddress: String?
let input: String?
let type: String
let gas: Int
let gasUsed: Int
let traceId: Int?
let isError: Bool
let errCode: String?
public let blockNumber: Int
public let timeStamp: String
public let hash: String
public let from: String
public let to: String?
public let contractAddress: String?
public let input: String?
public let type: String
public let gas: Int
public let gasUsed: Int
public let traceId: Int?
public let isError: Bool
public let errCode: String?

public init(from decoder: Decoder) throws {
let decodedResponse = try decoder.container(keyedBy: CodingKeys.self)
Expand Down