From 2cd5b63f0b7c505b92f4ecd0f72fe018a235a58e Mon Sep 17 00:00:00 2001 From: Evgeniy Stratonikov Date: Thu, 8 Jul 2021 10:06:10 +0300 Subject: [PATCH] policy: fix max exec fee Signed-off-by: Evgeniy Stratonikov --- pkg/core/native/policy.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/core/native/policy.go b/pkg/core/native/policy.go index 5135a6b5c..48b1db4ad 100644 --- a/pkg/core/native/policy.go +++ b/pkg/core/native/policy.go @@ -28,7 +28,7 @@ const ( DefaultStoragePrice = 100000 // maxExecFeeFactor is the maximum allowed execution fee factor. - maxExecFeeFactor = 1000 + maxExecFeeFactor = 100 // maxFeePerByte is the maximum allowed fee per byte value. maxFeePerByte = 100_000_000 // maxStoragePrice is the maximum allowed price for a byte of storage.