frostfs-contract/common/common.go
Anton Nikiforov 7acc5ecaf1 [#7] Remove notary disabled code
Signed-off-by: Anton Nikiforov <an.nikiforov@yadro.com>
2023-02-16 14:38:45 +03:00

15 lines
417 B
Go

package common
import (
"github.com/nspcc-dev/neo-go/pkg/interop/util"
)
const (
PanicMsgForNotaryDisabledEnv = "contract not applicable for notary-disabled environment"
)
// BytesEqual compares two slices of bytes by wrapping them into strings,
// which is necessary with new util.Equals interop behaviour, see neo-go#1176.
func BytesEqual(a []byte, b []byte) bool {
return util.Equals(string(a), string(b))
}