From af379b6cf660d5e7359a73eff233846fd55ced9c Mon Sep 17 00:00:00 2001 From: Christopher Goes Date: Mon, 7 May 2018 21:49:11 +0200 Subject: [PATCH] Linter fixes --- types/gas.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/types/gas.go b/types/gas.go index d4b63597c9..24be99f3fd 100644 --- a/types/gas.go +++ b/types/gas.go @@ -2,8 +2,10 @@ package types import () +// Gas measured by the SDK type Gas = int64 +// GasMeter interface to track gas consumption type GasMeter interface { GasExceeded() bool GasConsumed() Gas