Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release/v0.25.0 binance.18 #143

Merged
merged 33 commits into from
Jun 19, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
33 commits
Select commit Hold shift + click to select a range
b0dce84
add error log in stake endblock
Apr 17, 2019
14f4829
Add module for logger
Apr 17, 2019
32684c5
fix insufficient coins error msg
yutianwu Apr 22, 2019
7f3b245
Merge pull request #123 from binance-chain/refactor-stake-endblock-er…
Apr 22, 2019
adaf2e0
Merge pull request #126 from binance-chain/feature/fix_error_msg
yutianwu Apr 22, 2019
d8721e5
R4R: keys support ledger nano s (#125)
Apr 23, 2019
07ec890
Revert "[R4R] fix insufficient coins error msg"
yutianwu Apr 24, 2019
5cd8be3
Merge pull request #128 from binance-chain/revert-126-feature/fix_err…
yutianwu Apr 24, 2019
149b2fc
upgrade tendermint to 0315
rickyyangz May 9, 2019
563cb14
Merge pull request #132 from binance-chain/upgrade_tender_0315
yutianwu May 21, 2019
9cf3bf2
R4R: update lock file (#135)
May 22, 2019
43237c6
update dependency
yutianwu May 23, 2019
5237185
update
yutianwu May 23, 2019
4847726
Merge pull request #137 from binance-chain/update_dependency
yutianwu May 23, 2019
6b338b0
R4R: Fix merkle proof verification (#122)
May 23, 2019
9e46a72
[R4R] Add delist feature (#129)
yutianwu May 24, 2019
d595a84
Add ledger nano X support (#138)
May 26, 2019
1bcf6c2
bring back #581 pass tx source into msg handler via context (on top o…
ackratos May 27, 2019
f56de7f
R4R: fix failed simulation test (#131)
May 28, 2019
e4293f3
Merge pull request #142 from binance-chain/issue581_new
yutianwu May 28, 2019
beb50b1
R4R: Add offline option to command line (#136)
May 28, 2019
98e63d3
[R4R] State sync warp implementation (#130)
ackratos May 28, 2019
b89caab
[R4R] Add store key upgrade config (#144)
yutianwu Jun 4, 2019
d1c006d
set version
yutianwu Jun 17, 2019
82a32d4
remove print
yutianwu Jun 17, 2019
93eb442
Merge pull request #147 from binance-chain/add_set_version
yutianwu Jun 18, 2019
c49ad65
fix state_sync according to time_lock
ackratos Jun 18, 2019
d53c7f1
Add chain-id check for sign command (#151)
Jun 19, 2019
99f7fee
clean according to review comments
ackratos Jun 19, 2019
93ade5f
Merge pull request #150 from binance-chain/statesync_upgrade_fix
ackratos Jun 19, 2019
29e8e5a
update dependency
yutianwu Jun 19, 2019
ee13208
update vendor deps
yutianwu Jun 19, 2019
eef6714
Merge pull request #152 from binance-chain/update_dep
yutianwu Jun 19, 2019
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
98 changes: 62 additions & 36 deletions Gopkg.lock

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

21 changes: 13 additions & 8 deletions Gopkg.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,6 @@
name = "github.com/bgentry/speakeasy"
version = "~0.1.0"

[[override]]
name = "github.com/golang/protobuf"
version = "=1.1.0"

[[constraint]]
name = "github.com/mattn/go-isatty"
version = "~0.0.3"
Expand Down Expand Up @@ -54,12 +50,12 @@
[[override]]
name = "github.com/tendermint/iavl"
source = "github.com/binance-chain/bnc-tendermint-iavl"
version = "=v0.12.0-binance.0"
version = "=v0.12.0-binance.1"

[[override]]
name = "github.com/tendermint/tendermint"
source = "github.com/binance-chain/bnc-tendermint"
version = "=v0.30.1-binance.0"
version = "=v0.31.5-binance.0"

## deps without releases:

Expand All @@ -76,9 +72,18 @@
name = "github.com/cosmos/go-bip39"
revision = "52158e4697b87de16ed390e1bdaf813e581008fa"

[[override]]
name = "github.com/zondax/ledger-go"
source = "https://github.com/binance-chain/ledger-go"
version = "v0.9.1"

[[constraint]]
name = "github.com/zondax/ledger-goclient"
version = "=v0.1.0"
name = "github.com/zondax/ledger-cosmos-go"
source = "https://github.com/binance-chain/ledger-cosmos-go"
version = "v0.9.9-binance.1"
[[prune.project]]
name = "github.com/zondax/hid"
unused-packages = false

## transitive deps, with releases:

Expand Down
5 changes: 4 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,10 @@ godocs:
########################################
### Testing

test: test_unit
test:
make test_unit
make test_race
make test_sim_modules

test_cli:
@go test -count 1 -p 1 `go list github.com/cosmos/cosmos-sdk/cmd/gaia/cli_test` -tags=cli_test
Expand Down
Loading