From 0a85922a7abbb5cd75ba35d721e69f06ac6d5633 Mon Sep 17 00:00:00 2001 From: philip-morlier Date: Mon, 20 Feb 2023 12:09:44 -0800 Subject: [PATCH] reverted BlockContext.Time to big.Int to preserve downstream plugins --- core/interface.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/interface.go b/core/interface.go index 0dc6266..48eb7e9 100644 --- a/core/interface.go +++ b/core/interface.go @@ -212,7 +212,7 @@ type BlockContext struct { Coinbase Address GasLimit uint64 BlockNumber *big.Int - Time uint64 + Time *big.Int Difficulty *big.Int BaseFee *big.Int }