Skip to content
Merged
Show file tree
Hide file tree
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
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ class RpcTransaction(
val nonce: Long,
val blockHash: ByteArray?,
val blockNumber: Long?,
val transactionIndex: Int?,
val transactionIndex: Long?,
val from: Address,
val to: Address?,
val value: BigInteger,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import io.horizontalsystems.ethereumkit.models.TransactionLog

class RpcTransactionReceipt(
val transactionHash: ByteArray,
val transactionIndex: Int,
val transactionIndex: Long,
val blockHash: ByteArray,
val blockNumber: Long,
val from: Address,
Expand All @@ -17,5 +17,5 @@ class RpcTransactionReceipt(
val logs: List<TransactionLog>,
val logsBloom: ByteArray,
val root: ByteArray?,
val status: Int?
val status: Long?
)