Skip to content

Commit

Permalink
use higher gas budget for valdiator tool (MystenLabs#10261)
Browse files Browse the repository at this point in the history
## Description 

As title. 

## Test Plan 

How did you test the new or updated feature?

---
If your changes are not user-facing and not a breaking change, you can
skip the following section. Otherwise, please indicate what changed, and
then add to the Release Notes section as highlighted during the release
process.

### Type of Change (Check all that apply)

- [ ] user-visible impact
- [ ] breaking change for a client SDKs
- [ ] breaking change for FNs (FN binary must upgrade)
- [ ] breaking change for validators or node operators (must upgrade
binaries)
- [ ] breaking change for on-chain data layout
- [ ] necessitate either a data wipe or data migration

### Release notes
  • Loading branch information
longbowlu authored Apr 1, 2023
1 parent 250241b commit 0384723
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions crates/sui/src/validator_commands.rs
Original file line number Diff line number Diff line change
Expand Up @@ -54,8 +54,7 @@ use sui_types::{
SUI_SYSTEM_OBJ_CALL_ARG,
};

// TODO adjust this to a reasonable number after the gas fix is in
const DEFAULT_GAS_BUDGET: u64 = 15_000_000;
const DEFAULT_GAS_BUDGET: u64 = 200_000_000; // 0.2 SUI

#[derive(Parser)]
#[clap(rename_all = "kebab-case")]
Expand Down

0 comments on commit 0384723

Please sign in to comment.