From 55db1be049f0ea7c07e3d2a9d0ac0f80bbd88999 Mon Sep 17 00:00:00 2001 From: ArtificialPB Date: Thu, 21 Dec 2023 01:16:34 +0100 Subject: [PATCH] fix Unsupported tx type name in toString() --- .../main/kotlin/io/ethers/core/types/transaction/Transaction.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ethers-core/src/main/kotlin/io/ethers/core/types/transaction/Transaction.kt b/ethers-core/src/main/kotlin/io/ethers/core/types/transaction/Transaction.kt index 19b7f166..4064064b 100644 --- a/ethers-core/src/main/kotlin/io/ethers/core/types/transaction/Transaction.kt +++ b/ethers-core/src/main/kotlin/io/ethers/core/types/transaction/Transaction.kt @@ -70,7 +70,7 @@ sealed class TxType(val type: Int) { } override fun toString(): String { - return "Unknown(type=$type)" + return "Unsupported(type=$type)" } }