Linter fixes
This commit is contained in:
parent
ddb3b36b7b
commit
af379b6cf6
|
@ -2,8 +2,10 @@ package types
|
||||||
|
|
||||||
import ()
|
import ()
|
||||||
|
|
||||||
|
// Gas measured by the SDK
|
||||||
type Gas = int64
|
type Gas = int64
|
||||||
|
|
||||||
|
// GasMeter interface to track gas consumption
|
||||||
type GasMeter interface {
|
type GasMeter interface {
|
||||||
GasExceeded() bool
|
GasExceeded() bool
|
||||||
GasConsumed() Gas
|
GasConsumed() Gas
|
||||||
|
|
Loading…
Reference in New Issue