Skip to content

Commit d5bdd84

Browse files
committed
even more gas
1 parent 4fbb387 commit d5bdd84

4 files changed

Lines changed: 4 additions & 4 deletions

File tree

crates/movy-replay/src/exec.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -324,7 +324,7 @@ where
324324
TypeTag::from_str("0x2::sui::SUI").unwrap().into(),
325325
MoveOwner::AddressOwner(sender.into()),
326326
gas_id.into(),
327-
10_000_000_000,
327+
100_000_000_000_000_000_00,
328328
)?;
329329
let gas_ref = self
330330
.db

crates/movy/src/sui/deploy.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ impl SuiBuildDeployArgs {
5050
MoveTypeTag::from_str("0x2::sui::SUI").unwrap(),
5151
MoveOwner::AddressOwner(self.roles.deployer),
5252
gas_id.into(),
53-
100_000_000_000_000_000,
53+
100_000_000_000_000_000_00,
5454
)?;
5555
let testing_env = SuiTestingEnv::new(env.wrapped());
5656
testing_env.mock_testing_std()?;

crates/movy/src/sui/fuzz.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -195,7 +195,7 @@ impl SuiFuzzArgs {
195195
MoveTypeTag::from_str("0x2::sui::SUI").unwrap(),
196196
MoveOwner::AddressOwner(self.roles.deployer),
197197
gas_id.into(),
198-
100_000_000_000_000_000,
198+
100_000_000_000_000_000_00,
199199
)?;
200200
let testing_env = SuiTestingEnv::new(env.wrapped());
201201
testing_env.mock_testing_std()?;

crates/movy/src/sui/static_analysis.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ impl SuiStaticAnalysisArgs {
6363
MoveTypeTag::from_str("0x2::sui::SUI").unwrap(),
6464
MoveOwner::AddressOwner(self.deployer),
6565
gas_id.into(),
66-
100_000_000_000_000_000,
66+
100_000_000_000_000_000_00,
6767
)?;
6868
let testing_env = SuiTestingEnv::new(env.wrapped());
6969
testing_env.mock_testing_std()?;

0 commit comments

Comments
 (0)