Skip to content

Commit

Permalink
Increase lite server gas limit
Browse files Browse the repository at this point in the history
  • Loading branch information
Szymongib authored and chorus-techops committed Oct 24, 2024
1 parent d4de286 commit 348ea4e
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion validator/impl/liteserver.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,9 @@ class LiteQuery : public td::actor::Actor {
enum {
default_timeout_msec = 4500, // 4.5 seconds
max_transaction_count = 16, // fetch at most 16 transactions in one query
client_method_gas_limit = 300000 // gas limit for liteServer.runSmcMethod
// Modified by Chorus to make it possible to execute some lite server methods
// server side, without running TVM client side (as liteclient binary does).
client_method_gas_limit = 1000000 // gas limit for liteServer.runSmcMethod
};
enum {
ls_version = 0x101,
Expand Down

0 comments on commit 348ea4e

Please sign in to comment.