From cada97f1a0aaab36125bc762aeb8a8c9b4399a51 Mon Sep 17 00:00:00 2001 From: Mateusz Jasiuk Date: Thu, 14 Nov 2024 12:26:49 +0100 Subject: [PATCH] feat: increase gas limit for withdraw tx --- orm/migrations/2024-06-12-140948_gas/up.sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/orm/migrations/2024-06-12-140948_gas/up.sql b/orm/migrations/2024-06-12-140948_gas/up.sql index 01c01a89..c97de668 100644 --- a/orm/migrations/2024-06-12-140948_gas/up.sql +++ b/orm/migrations/2024-06-12-140948_gas/up.sql @@ -28,7 +28,7 @@ INSERT INTO gas (tx_kind, gas_limit) VALUES ('unbond', 150_000); INSERT INTO gas (tx_kind, gas_limit) -VALUES ('withdraw', 50_000); +VALUES ('withdraw', 150_000); INSERT INTO gas (tx_kind, gas_limit) VALUES ('claim_rewards', 50_000);