Skip to content

Commit

Permalink
Merge branch 'issues/657/feat/app-stake-transfer' into issues/657/ref…
Browse files Browse the repository at this point in the history
…actor/transfer-msg_period-param

* issues/657/feat/app-stake-transfer:
  [Supplier] Initial slashing implementation (#795)
  [Container image] Change base image for release (#829)
  [Proof] Prevent proof submission when not required (#822)
  • Loading branch information
bryanchriswhite committed Sep 19, 2024
2 parents 75c5927 + dcac5d7 commit 5551d90
Show file tree
Hide file tree
Showing 70 changed files with 2,236 additions and 975 deletions.
9 changes: 3 additions & 6 deletions Dockerfile.release
Original file line number Diff line number Diff line change
@@ -1,13 +1,10 @@
# This Dockerfile is used to build container image for production workloads.
# It relies on the binaries produced by `cosmovisor_cross_compile`, `ignite_release` and `ignite_release_extract_binaries` make targets.
FROM alpine:3.19
# The image depends on `cosmovisor_cross_compile`, `ignite_release` and `ignite_release_extract_binaries` make targets.
FROM debian:bookworm
ARG TARGETARCH

# Use `1025` G/UID so users can switch between this and `heighliner` image without a need to chown the files.
RUN addgroup --gid 1025 -S pocket && adduser --uid 1025 -S pocket -G pocket

# Install gcompat to provide compatibility with glibc binary on amd64
RUN apk add --no-cache gcompat
RUN groupadd -g 1025 pocket && useradd -u 1025 -g pocket -m -s /sbin/nologin pocket

COPY --chown=pocket:pocket release_binaries/poktroll_linux_$TARGETARCH /bin/poktrolld
COPY --chown=pocket:pocket tmp/cosmovisor-linux-$TARGETARCH /bin/cosmovisor
Expand Down
156 changes: 96 additions & 60 deletions api/poktroll/proof/params.pulsar.go

Large diffs are not rendered by default.

98 changes: 83 additions & 15 deletions api/poktroll/shared/params.pulsar.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 5551d90

Please sign in to comment.