Skip to content

Commit cc7b571

Browse files
authored
chore(xc_admin/frontend): set pythnet max publishers to 64 (#1305)
* chore(xc_admin/frontend): set pythnet max publishers to 64 * chore: fix ci
1 parent a71f422 commit cc7b571

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/ci-ethereum-contract.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
run: npm ci
2727

2828
- name: Install Foundry
29-
uses: foundry-rs/foundry-toolchain@v1
29+
uses: foundry-rs/foundry-toolchain@v1.1.1
3030
with:
3131
version: nightly
3232

governance/xc_admin/packages/xc_admin_common/src/cluster.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ export function getMaximumNumberOfPublishers(cluster: PythCluster) {
3737
case "testnet":
3838
return 32;
3939
case "pythnet":
40-
return 32;
40+
return 64;
4141
case "pythtest-conformance":
4242
return 64;
4343
case "pythtest-crosschain":

target_chains/ethereum/contracts/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
"migrate": "truffle migrate",
2222
"receiver-submit-guardian-sets": "truffle exec scripts/receiverSubmitGuardianSetUpgrades.js",
2323
"verify": "truffle run verify $npm_config_module@$npm_config_contract_address --network $npm_config_network",
24-
"install-forge-deps": "forge install foundry-rs/forge-std@2c7cbfc6fbede6d7c9e6b17afe997e3fdfe22fef --no-git --no-commit",
24+
"install-forge-deps": "forge install foundry-rs/forge-std@v1.7.6 --no-git --no-commit",
2525
"coverage": "./coverage.sh"
2626
},
2727
"author": "",

0 commit comments

Comments
 (0)