This commit is contained in:
0xmuralik 2023-03-14 12:24:02 +05:30
parent e7c45e9755
commit 07b51ba53d
4 changed files with 6 additions and 16 deletions

View File

@ -71,6 +71,8 @@ jobs:
if: env.GIT_DIFF
gomod2nix:
name: Check gomod2nix.toml file is up to date
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2.3.4

View File

@ -26,7 +26,6 @@ jobs:
uses: github/super-linter@v4
env:
LINTER_RULES_PATH: /
FILTER_REGEX_EXCLUDE: "Dockerfile"
YAML_CONFIG_FILE: .yamllint
VALIDATE_ALL_CODEBASE: false
MARKDOWN_CONFIG_FILE: .markdownlint.yml
@ -37,5 +36,6 @@ jobs:
VALIDATE_GO: false
VALIDATE_JAVASCRIPT_STANDARD: false
VALIDATE_GITLEAKS: false
VALIDATE_DOCKERFILE_HADOLINT: false
DEFAULT_BRANCH: "main"
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

View File

@ -7,9 +7,8 @@ ENV PACKAGES git build-base
WORKDIR /go/src/github.com/cerc-io/laconicd
# Install dependencies
RUN apk add --no-cache $PACKAGES
RUN apk add --no-cache linux-headers
RUN apk add --update $PACKAGES
RUN apk add linux-headers
# Add source files
COPY . .
@ -21,7 +20,7 @@ RUN make build
FROM alpine:3.17.1
# Install ca-certificates
RUN apk add --no-cache ca-certificates jq curl
RUN apk add --update ca-certificates jq curl
WORKDIR /
# Copy over binaries from the build-env

View File

@ -127,17 +127,6 @@ message ChainConfig {
(gogoproto.customtype) = "github.com/cosmos/cosmos-sdk/types.Int",
(gogoproto.moretags) = "yaml:\"cancun_block\""
];
// shanghai_block switch block (nil = no fork, 0 = already on shanghai)
string shanghai_block = 22 [
(gogoproto.customtype) = "github.com/cosmos/cosmos-sdk/types.Int",
(gogoproto.moretags) = "yaml:\"shanghai_block\""
];
// cancun_block switch block (nil = no fork, 0 = already on cancun)
string cancun_block = 23 [
(gogoproto.customtype) = "github.com/cosmos/cosmos-sdk/types.Int",
(gogoproto.moretags) = "yaml:\"cancun_block\""
];
}
// State represents a single Storage key value pair item.