Skip to content

Commit a6f3790

Browse files
committed
run for more rounds with nitro-timeboost integration, send more txns
1 parent 1ac8c3a commit a6f3790

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/build-and-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@ jobs:
156156
--init &
157157
cd ..
158158
- name: Run test timeboost with nitro sequencer
159-
run: just run_demo -s /tmp/stamp --ignore-stamp -k test-configs/local-2.json --rounds 3000 --yapper --nitro
159+
run: just run_demo -s /tmp/stamp --ignore-stamp -k test-configs/local-2.json --rounds 10000 --yapper --nitro
160160
- name: Verify sequencer blocks
161161
run: |
162162
just verify_blocks

yapper/src/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ struct Cli {
4343
#[clap(long, default_value_t = false)]
4444
nitro_integration: bool,
4545

46-
#[clap(long, default_value_t = 10)]
46+
#[clap(long, default_value_t = 20)]
4747
nitro_txn_limit: u64,
4848
}
4949

yapper/src/tx.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -198,7 +198,7 @@ pub async fn yap_with_nitro(addresses: &[Address], txn_limit: u64) -> Result<()>
198198
.await;
199199
txns_sent += 1;
200200
if txns_sent == txn_limit {
201-
tracing::error!("done");
201+
tracing::error!("hit txn limit, terminating yapper");
202202
return Ok(());
203203
}
204204
sleep(Duration::from_secs(1)).await;

0 commit comments

Comments
 (0)