Skip to content

Commit a7b7117

Browse files
committed
fix: reduce the amount of move used in test
1 parent 14c952a commit a7b7117

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

networks/movement/movement-client/src/bin/e2e/e2e_ggp_deprecation.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -267,7 +267,7 @@ async fn main() -> Result<(), anyhow::Error> {
267267
println!("Executing test transaction...");
268268

269269
let test_txn = coin_client
270-
.transfer(&mut sender, beneficiary.address(), 1_000, None)
270+
.transfer(&mut sender, beneficiary.address(), 100, None)
271271
.await
272272
.context("Failed to submit test transaction")?;
273273

@@ -297,7 +297,7 @@ async fn main() -> Result<(), anyhow::Error> {
297297
// Verify that gas fees were deducted and calculate expected amount
298298
if final_balance < initial_balance {
299299
let gas_fees_deducted = initial_balance - final_balance;
300-
let transfer_amount = 1_000;
300+
let transfer_amount = 100;
301301
let expected_gas_fee = 13_700; // Based on your test output: 5000 gas * 100 price + 8700 base fee
302302

303303
println!("Gas fees deducted: {}", gas_fees_deducted);

0 commit comments

Comments
 (0)