Skip to content

Commit

Permalink
Merge pull request #2 from lsd-ucsc/upd-quote-status
Browse files Browse the repository at this point in the history
Added GROUP_OUT_OF_DATE to decent svr cert mgr, and ver updates
  • Loading branch information
zhenghaven authored Aug 25, 2023
2 parents be2e60b + 20a1214 commit ffd81e4
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/create-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@ jobs:
python-version: [ 3.11 ]
node-version: [ 18.16.0 ]

ganache-version: [ 7.8.0 ]
ganache-version: [ 7.9.1 ]

solc-version: [ v0.8.20 ]
solc-version: [ v0.8.21 ]

env:
SOLC_BIN: ${{ github.workspace }}/build/solc-static-linux
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/solidity-unittesting.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
strategy:
matrix:
os: [ ubuntu-22.04 ]
solc-version: [ 0.8.20 ]
solc-version: [ 0.8.21 ]
chain-fork: [ shanghai ]
opt-runs: [ 200 ]

Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
MODULES := \
contracts \
tests
SOLC_VERSION := v0.8.20
SOLC_VERSION := v0.8.21
MKFILE_PATH := $(abspath $(lastword $(MAKEFILE_LIST)))
CURRENT_DIR := $(dir $(MKFILE_PATH))
SOLC_BIN := $(CURRENT_DIR)/build/solc-static-linux
Expand Down
1 change: 1 addition & 0 deletions contracts/DecentServerCertMgr.sol
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ contract DecentServerCertMgr {
m_iasRepCertMgrAddr = iasRepCertMgrAddr;

m_quoteStatusMap[keccak256("OK")] = true;
m_quoteStatusMap[keccak256("GROUP_OUT_OF_DATE")] = true;
m_quoteStatusMap[keccak256("CONFIGURATION_NEEDED")] = true;
m_quoteStatusMap[keccak256("SW_HARDENING_NEEDED")] = true;
m_quoteStatusMap[keccak256("CONFIGURATION_AND_SW_HARDENING_NEEDED")] = true;
Expand Down

0 comments on commit ffd81e4

Please sign in to comment.