From 7c952cf40e6a973a154259b59ebdaec14fc6856e Mon Sep 17 00:00:00 2001 From: andri lim Date: Thu, 13 Jun 2024 17:11:16 +0700 Subject: [PATCH] Revert GasInt back to int64 (#703) Turn out it requires more planning to switch GasInt to uint64 --- eth/common/eth_types.nim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eth/common/eth_types.nim b/eth/common/eth_types.nim index 28bf364..a8a49b8 100644 --- a/eth/common/eth_types.nim +++ b/eth/common/eth_types.nim @@ -34,7 +34,7 @@ type EthAddress* = array[20, byte] DifficultyInt* = UInt256 - GasInt* = uint64 + GasInt* = int64 ## Type alias used for gas computation # For reference - https://github.com/status-im/nimbus/issues/35#issuecomment-391726518