From ec19a087bbb9891667cc75a951d5a2f7869be564 Mon Sep 17 00:00:00 2001 From: Anna Shaleva Date: Tue, 30 Mar 2021 16:29:04 +0300 Subject: [PATCH] core: remove StorageFlag remnant --- pkg/core/interop_system.go | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/pkg/core/interop_system.go b/pkg/core/interop_system.go index 3f7251614..b37b2b2d9 100644 --- a/pkg/core/interop_system.go +++ b/pkg/core/interop_system.go @@ -31,17 +31,6 @@ type StorageContext struct { ReadOnly bool } -// StorageFlag represents storage flag which denotes whether the stored value is -// a constant. -type StorageFlag byte - -const ( - // None is a storage flag for non-constant items. - None StorageFlag = 0 - // Constant is a storage flag for constant items. - Constant StorageFlag = 0x01 -) - // engineGetScriptContainer returns transaction or block that contains the script // being run. func engineGetScriptContainer(ic *interop.Context) error {