Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions .test_patterns.yml
Original file line number Diff line number Diff line change
Expand Up @@ -84,9 +84,7 @@ tests:

# e2e
# e.g. to grind: seq 1 16 | parallel --bar --tag --halt now,fail=1 ci3/dump_fail "NAME_POSTFIX=_{} yarn-project/end-to-end/scripts/run_test.sh simple e2e_p2p/gossip_network >/dev/null"
# Skipping all these tests for now as they consistently timeout due to huge speed regression.
- regex: "simple e2e_p2p/"
skip: true
owners:
- *sean

Expand Down
10 changes: 6 additions & 4 deletions yarn-project/end-to-end/src/e2e_p2p/p2p_network.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ import {
createSnapshotManager,
deployAccounts,
} from '../fixtures/snapshot_manager.js';
import { getPrivateKeyFromIndex } from '../fixtures/utils.js';
import { getPrivateKeyFromIndex, getSponsoredFPCAddress } from '../fixtures/utils.js';
import { getEndToEndTestTelemetryClient } from '../fixtures/with_telemetry_utils.js';

// Use a fixed bootstrap node private key so that we can re-use the same snapshot and the nodes can find each other
Expand Down Expand Up @@ -319,9 +319,11 @@ export class P2PNetworkTest {
async setup() {
this.ctx = await this.snapshotManager.setup();

this.prefilledPublicData = (
await getGenesisValues(this.ctx.initialFundedAccounts.map(a => a.address))
).prefilledPublicData;
const sponsoredFPCAddress = await getSponsoredFPCAddress();
const initialFundedAccounts = [...this.ctx.initialFundedAccounts.map(a => a.address), sponsoredFPCAddress];

const { prefilledPublicData } = await getGenesisValues(initialFundedAccounts);
this.prefilledPublicData = prefilledPublicData;

this.startSyncMockSystemTimeInterval();

Expand Down
1 change: 1 addition & 0 deletions yarn-project/end-to-end/src/e2e_p2p/shared.ts
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@ export const createPXEServiceAndSubmitTransactions = async (
fundedAccount: InitialAccountData,
): Promise<NodeContext> => {
const rpcConfig = getRpcConfig();
rpcConfig.proverEnabled = false;
const pxeService = await createPXEService(node, rpcConfig, true);

const account = await getSchnorrAccount(
Expand Down