From f71300764878e31eabf7e3b18a0cb6b64255da2e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cl=C3=A9ment=20=27birdy=27=20Danjou?= Date: Thu, 7 Mar 2024 15:26:41 +0100 Subject: [PATCH] chore: adjust gas price for min/max --- fhevm/params.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/fhevm/params.go b/fhevm/params.go index dc1d425..0386797 100644 --- a/fhevm/params.go +++ b/fhevm/params.go @@ -148,7 +148,7 @@ func DefaultGasCosts() GasCosts { tfhe.FheUint64: 146000 + AdjustFHEGas, }, FheMinMax: map[tfhe.FheUintType]uint64{ - tfhe.FheUint4: 106000 + AdjustFHEGas, + tfhe.FheUint4: 111000 + AdjustFHEGas, tfhe.FheUint8: 118000 + AdjustFHEGas, tfhe.FheUint16: 143000 + AdjustFHEGas, tfhe.FheUint32: 173000 + AdjustFHEGas, @@ -156,7 +156,7 @@ func DefaultGasCosts() GasCosts { }, FheScalarMinMax: map[tfhe.FheUintType]uint64{ tfhe.FheUint4: 111000 + AdjustFHEGas, - tfhe.FheUint8: 114000 + AdjustFHEGas, + tfhe.FheUint8: 118000 + AdjustFHEGas, tfhe.FheUint16: 140000 + AdjustFHEGas, tfhe.FheUint32: 154000 + AdjustFHEGas, tfhe.FheUint64: 182000 + AdjustFHEGas,