Skip to content

Commit

Permalink
Fixed template values
Browse files Browse the repository at this point in the history
  • Loading branch information
aaroncox committed Jan 22, 2025
1 parent ad2ea07 commit 4e36523
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 6 deletions.
6 changes: 2 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,8 @@ jobs:
strategy:
matrix:
path:
- 'contracts/platform/src'
- 'contracts/platform/include/platform'
- 'contracts/server/src'
- 'contracts/server/include/server'
- 'contracts/api/src'
- 'contracts/api/include/api'
steps:
- uses: actions/checkout@v3
- name: Run clang-format style check
Expand Down
4 changes: 2 additions & 2 deletions contracts/api/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -25,13 +25,13 @@ clean:
rm -rf build

testnet: build/debug
cleos -u $(TESTNET_NODE_URL) set contract $(TESTNET_PLATFORM_ACCOUNT) \
cleos -u $(TESTNET_NODE_URL) set contract $(TESTNET_CONTRACT_ACCOUNT) \
build/ ${SRC_CONTRACT_NAME}.wasm ${SRC_CONTRACT_NAME}.abi

mainnet: build/production
cleos -u $(MAINNET_NODE_URL) set contract \
--dont-broadcast --skip-sign --expiration 259200 --json-file msig.json \
${MAINNET_PLATFORM_ACCOUNT} build/ ${SRC_CONTRACT_NAME}.wasm ${SRC_CONTRACT_NAME}.abi
${MAINNET_CONTRACT_ACCOUNT} build/ ${SRC_CONTRACT_NAME}.wasm ${SRC_CONTRACT_NAME}.abi
cleos -u $(MAINNET_NODE_URL) multisig propose_trx ${MAINNET_MSIG_PROPOSAL} ${MAINNET_MSIG_SIGNERS} \
msig.json ${MAINNET_MSIG_PROPOSER} -p ${MAINNET_MSIG_PERMISSION}

Expand Down

0 comments on commit 4e36523

Please sign in to comment.