Skip to content

Commit

Permalink
debug
Browse files Browse the repository at this point in the history
  • Loading branch information
ping-ke committed Aug 7, 2024
1 parent e82fdca commit 27f9f51
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/integration-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,12 @@ jobs:
git pull
npm install
git submodule init && git submodule update
npx hardhat run scripts/deployL2-it.js --network qkc_testnet >> deploy.log
- name: Set ENV Parameters
echo ES_NODE_CONTRACT_ADDRESS=`cat .caddr` >> "$GITHUB_ENV"
echo $ES_NODE_CONTRACT_ADDRESS
echo ES_NODE_SIGNER_PRIVATE_KEY=e690c916d02b6f3ad4bb70cc2663389ea88a79ded45613b1bd5545961d063258 >> "$GITHUB_ENV"
echo ES_NODE_STORAGE_MINER=0x5C935469C5592Aeeac3372e922d9bCEabDF8830d >> "$GITHUB_ENV"

- name: Build and Run Bootnode Node
run: |
Expand All @@ -43,17 +46,14 @@ jobs:
- name: Upload Blobs
run: |
cd ../ethstorage-sdk
git checkout integration-test
git pull
cd ./integration_tests/scripts
npm install --force
rollup -c
node ituploader.js
node ituploader.js > upload.log
- name: Test
run: |
cd ../es-node
env ES_NODE_STORAGE_MINER=0x5C935469C5592Aeeac3372e922d9bCEabDF8830d ES_NODE_SIGNER_PRIVATE_KEY=e690c916d02b6f3ad4bb70cc2663389ea88a79ded45613b1bd5545961d063258 ./run-l2-it.sh > es-node-it.log&
cd ../..
./run-l2-it.sh > es-node-it.log&
cd ./cmd/integration-test-server
go build
./integration-test-server > itserver.log
2 changes: 1 addition & 1 deletion integration_tests/scripts/ituploader.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ const contractABI = [

const provider = new ethers.JsonRpcProvider(RPC);
const contract = new Contract(contractAddr, contractABI, provider);
const MAX_BLOB = 144n;
const MAX_BLOB = 192n;

async function UploadBlobsForIntegrationTest() {
// put blobs
Expand Down

0 comments on commit 27f9f51

Please sign in to comment.