Skip to content

Commit

Permalink
Fix Paseo schema defaults
Browse files Browse the repository at this point in the history
  • Loading branch information
wilwade committed Oct 17, 2024
1 parent f9974ae commit b77e763
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions e2e/scaffolding/env.ts
Original file line number Diff line number Diff line change
Expand Up @@ -46,23 +46,23 @@ export function getBroadcastSchema() {
export function getDummySchema() {
switch (process.env.CHAIN_ENVIRONMENT) {
case CHAIN_ENVIRONMENT.PASEO_TESTNET:
return 12;
return 16_074;
}
return null;
}

export function getAvroChatMessagePaginatedSchema() {
switch (process.env.CHAIN_ENVIRONMENT) {
case CHAIN_ENVIRONMENT.PASEO_TESTNET:
return 14;
return 16_075;
}
return null;
}

export function getAvroChatMessageItemizedSchema() {
switch (process.env.CHAIN_ENVIRONMENT) {
case CHAIN_ENVIRONMENT.PASEO_TESTNET:
return 13;
return 16_073;
}
return null;
}

0 comments on commit b77e763

Please sign in to comment.