From 70acdcc5b31e332b710c59f7a4996a0529931915 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cl=C3=A9ment=20=27birdy=27=20Danjou?= Date: Mon, 18 Mar 2024 13:32:04 +0100 Subject: [PATCH] feat: add correct gas price for FheUint160 --- fhevm/params.go | 1 + 1 file changed, 1 insertion(+) diff --git a/fhevm/params.go b/fhevm/params.go index e98d0ab..b9c4a36 100644 --- a/fhevm/params.go +++ b/fhevm/params.go @@ -137,6 +137,7 @@ func DefaultGasCosts() GasCosts { tfhe.FheUint16: 44000 + AdjustFHEGas, tfhe.FheUint32: 72000 + AdjustFHEGas, tfhe.FheUint64: 76000 + AdjustFHEGas, + tfhe.FheUint160: 80000 + AdjustFHEGas, }, FheLe: map[tfhe.FheUintType]uint64{ tfhe.FheUint4: 60000 + AdjustFHEGas,