chore(xc_admin/frontend): set pythnet max publishers to 64 (#1305)
* chore(xc_admin/frontend): set pythnet max publishers to 64 * chore: fix ci
This commit is contained in:
parent
a71f422ddc
commit
cc7b57145b
|
@ -26,7 +26,7 @@ jobs:
|
|||
run: npm ci
|
||||
|
||||
- name: Install Foundry
|
||||
uses: foundry-rs/foundry-toolchain@v1
|
||||
uses: foundry-rs/foundry-toolchain@v1.1.1
|
||||
with:
|
||||
version: nightly
|
||||
|
||||
|
|
|
@ -37,7 +37,7 @@ export function getMaximumNumberOfPublishers(cluster: PythCluster) {
|
|||
case "testnet":
|
||||
return 32;
|
||||
case "pythnet":
|
||||
return 32;
|
||||
return 64;
|
||||
case "pythtest-conformance":
|
||||
return 64;
|
||||
case "pythtest-crosschain":
|
||||
|
|
|
@ -21,7 +21,7 @@
|
|||
"migrate": "truffle migrate",
|
||||
"receiver-submit-guardian-sets": "truffle exec scripts/receiverSubmitGuardianSetUpgrades.js",
|
||||
"verify": "truffle run verify $npm_config_module@$npm_config_contract_address --network $npm_config_network",
|
||||
"install-forge-deps": "forge install foundry-rs/forge-std@2c7cbfc6fbede6d7c9e6b17afe997e3fdfe22fef --no-git --no-commit",
|
||||
"install-forge-deps": "forge install foundry-rs/forge-std@v1.7.6 --no-git --no-commit",
|
||||
"coverage": "./coverage.sh"
|
||||
},
|
||||
"author": "",
|
||||
|
|
Loading…
Reference in New Issue