Skip to content

Commit 444067d

Browse files
committed
fix: don't bypass the block queue when running simulateBlock
1 parent 74e27c0 commit 444067d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/cosmic-swingset/lib/ag-solo/fake-chain.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ export async function connectToFakeChain(basedir, GCI, role, delay, inbound) {
7575
const maximumDelay = (delay || PRETEND_BLOCK_DELAY) * 1000;
7676

7777
const withBlockQueue = makeWithQueue();
78-
const simulateBlock = withBlockQueue(async function simulateBlock() {
78+
const simulateBlock = withBlockQueue(async function unqueuedSimulateBlock() {
7979
const actualStart = Date.now();
8080
// Gather up the new messages into the latest block.
8181
thisBlock.push(...intoChain);

0 commit comments

Comments
 (0)