From 0dfeb8000d93213a8eaf740797b0a6b682aab6b2 Mon Sep 17 00:00:00 2001 From: MozirDmitriy Date: Wed, 24 Sep 2025 11:36:11 +0300 Subject: [PATCH] Update contracts.go --- core/vm/contracts.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/vm/contracts.go b/core/vm/contracts.go index e0c1b36061..297fe2e1f6 100644 --- a/core/vm/contracts.go +++ b/core/vm/contracts.go @@ -48,7 +48,7 @@ import ( // requires a deterministic gas count based on the input size of the Run method of the // contract. type PrecompiledContract interface { - RequiredGas(input []byte) uint64 // RequiredGas calculates the contract gas use + RequiredGas(input []byte) uint64 // RequiredGas calculates the contract gas use Run(input []byte) ([]byte, error) // Run runs the precompiled contract Name() string }