You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We are running a backend service which frequently requires larger gas coins (4-5 SUI). After some debugging, I found out our issues are due to sui-gas-pool rejecting reservation requests larger than 2 SUI in /src/rpc/rpc_types.rs.
pub const MAX_BUDGET: u64 = 2_000_000_000;
It would be great if this could be moved to the config file so users can specify their own max budget! For now, I've forked the repo and changed the MAX_BUDGET.