Skip to content
Merged
Show file tree
Hide file tree
Changes from 29 commits
Commits
Show all changes
37 commits
Select commit Hold shift + click to select a range
aa5c453
add binary
hard-nett Feb 12, 2025
7e67c69
Merge branch 'bitsongofficial:main' into main
hard-nett Mar 3, 2025
da0ebba
patch: replace cosmos-sdk, bump cometbft
Mar 10, 2025
8c1d0c9
dev: prep for v022 upgrade
Mar 10, 2025
e2aba36
remove binary
Mar 10, 2025
1fe5a81
dev: add custom export cli command
Mar 10, 2025
db258a5
dev: update ed25519 library used in-place-testnet
Mar 10, 2025
54b0f55
bump: add debug mod instructions
Mar 10, 2025
36b5561
logs: update replace docs
Mar 10, 2025
d259750
fix testnet issues
antstalepresh Mar 11, 2025
8a94295
Merge pull request #7 from antstalepresh/fix/testnet
hard-nett Mar 11, 2025
8817d90
docs
Mar 11, 2025
cff2de4
readd v021 upgradeHandler for in-place-testnet
Mar 11, 2025
4ec330a
add historical custom upgrade patch logic
Mar 11, 2025
c72ca38
dev: remove unnecessary x/account feegrant query
Mar 11, 2025
bbd8a08
dev: bumps to upggradeHandler logs & tests
Mar 11, 2025
dc38640
dev: bump export custom
Mar 11, 2025
64d02b0
dev: return err instead of panic, require no error in tests
Mar 11, 2025
8a3bce1
add default replace, bump docker alpine version
Mar 12, 2025
34ea59c
go mod tidy
Mar 12, 2025
a14dc3d
wip: retain broken validator in testnet for patch assertion
Mar 20, 2025
73d635b
wip: retain validator in staking store
Mar 21, 2025
5d819f8
tests: 1 log file printed for debugging v022 upgradeHandler, added up…
Mar 21, 2025
e1b1b11
Merge pull request #8 from permissionlessweb/v022-custom-testnet
hard-nett Mar 21, 2025
290c4d3
dev: access appKeepers from top level app
Mar 21, 2025
9460fe8
Merge pull request #9 from permissionlessweb/keeper-bump
hard-nett Mar 21, 2025
263a92c
test: add unbonded control validator to unit tests
Apr 12, 2025
6476cfd
spellcheck
May 10, 2025
1f6418c
cosmos-sdk@v0.53, implement x/protocol-pool
May 10, 2025
c5672c6
register protocol pool in our app modules basic manager
May 10, 2025
15a441c
4444
May 10, 2025
7ee279f
ict: impl x/protocolpool tests
May 10, 2025
3e70aba
protocol-pool test
May 10, 2025
1dc9872
uncomment tests
May 10, 2025
9232ccd
init protocolpool keeper prior to distribution keeper
May 10, 2025
1561af6
Merge branch 'bitsongofficial:main' into v0.22.0-rc
hard-nett May 10, 2025
424ccd2
saftey
May 10, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ RUN LEDGER_ENABLED=false BUILD_TAGS=muslc LINK_STATICALLY=true make build \
&& (file /code/build/bitsongd | grep "statically linked")

# --------------------------------------------------------
FROM alpine:3.16
FROM alpine:3.17

COPY --from=go-builder /code/build/bitsongd /usr/bin/bitsongd

Expand Down
3 changes: 2 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ help:

APP_DIR = ./app
BINDIR ?= $(GOPATH)/bin
BUILDDIR ?= $(CURDIR)/build

PACKAGES_SIMTEST=$(shell go list ./... | grep '/simulation')
PACKAGES_UNITTEST=$(shell go list ./... | grep -v '/simulation' | grep -v '/cli_test')
Expand All @@ -40,7 +41,7 @@ COMMIT := $(shell git log -1 --format='%H')

LEDGER_ENABLED ?= true
SDK_PACK := $(shell go list -m github.com/cosmos/cosmos-sdk | sed 's/ /\@/g')
BUILDDIR ?= $(CURDIR)/build


TENDERMINT_VERSION := $(shell go list -m github.com/cometbft/cometbft | sed 's:.* ::') # grab everything after the space in "github.com/tendermint/tendermint v0.34.7"

Expand Down
Loading
Loading