-
Notifications
You must be signed in to change notification settings - Fork 562
Conversation
update to sdk v0.47.2 newer btcutil
@@ -196,7 +196,7 @@ | |||
args.chainID, _ = cmd.Flags().GetString(flags.FlagChainID) | |||
args.minGasPrices, _ = cmd.Flags().GetString(sdkserver.FlagMinGasPrices) | |||
args.numValidators, _ = cmd.Flags().GetInt(flagNumValidators) | |||
args.algo, _ = cmd.Flags().GetString(flags.FlagKeyAlgorithm) | |||
args.algo, _ = cmd.Flags().GetString(flags.FlagKeyType) |
Check warning
Code scanning / gosec
Returned error is not propagated up the stack.
@@ -161,7 +161,7 @@ | |||
args.nodeDaemonHome, _ = cmd.Flags().GetString(flagNodeDaemonHome) | |||
args.startingIPAddress, _ = cmd.Flags().GetString(flagStartingIPAddress) | |||
args.numValidators, _ = cmd.Flags().GetInt(flagNumValidators) | |||
args.algo, _ = cmd.Flags().GetString(flags.FlagKeyAlgorithm) | |||
args.algo, _ = cmd.Flags().GetString(flags.FlagKeyType) |
Check warning
Code scanning / gosec
Returned error is not propagated up the stack.
@@ -75,7 +76,7 @@ | |||
interactive, _ := cmd.Flags().GetBool(flagInteractive) | |||
noBackup, _ := cmd.Flags().GetBool(flagNoBackup) | |||
useLedger, _ := cmd.Flags().GetBool(flags.FlagUseLedger) | |||
algoStr, _ := cmd.Flags().GetString(flags.FlagKeyAlgorithm) | |||
algoStr, _ := cmd.Flags().GetString(flags.FlagKeyType) |
Check warning
Code scanning / gosec
Returned error is not propagated up the stack.
Codecov Report
Additional details and impacted files@@ Coverage Diff @@
## main #1782 +/- ##
==========================================
- Coverage 68.89% 68.88% -0.02%
==========================================
Files 117 117
Lines 10681 10824 +143
==========================================
+ Hits 7359 7456 +97
- Misses 2900 2936 +36
- Partials 422 432 +10
|
fix evm
@@ -274,7 +274,7 @@ func (suite *AnteTestSuite) TestRejectDeliverMsgsInAuthz() { | |||
}, | |||
), | |||
}, | |||
expectedCode: sdkerrors.ErrUnauthorized.ABCICode(), | |||
expectedCode: sdkerrors.ErrUnpackAny.ABCICode(), |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
err code change, for more info
This reverts commit 2c58a53.
This pull request has been automatically marked as stale because it has not had recent activity. It will be closed in 7 days-before-close if no further activity occurs. |
* integrate with sdk V47 & ibc-go V7 * update proto-gen and proto files * fix e2e tests * tmp * working tmp * fix rebase conflict * fix merge conflict * fix test * recover makefile changes * fix lint * fix protoc-gen-tool script * update tendermint dependency * update btcsuite/btcutil path * update gomod2nix * fix Makefile,regen proto files and remove third_party proto * update gomod2nix * fix lint * update nix * replace cometbft tm-db update to sdk v0.47.2 newer btcutil * algo -> key-type * set mempool * set chainId * update protobuf * fix import * fix test * debug test * update nix * fix btcsuite * make proto-gen follow by UPGRADING.md * fix sync issue with latest blk for more info, see https://github.com/cosmos/cosmos-sdk/blob/main/UPGRADING.md#replaces * disable depguard * gogo/protobuf -> cosmos/gogoproto * no pass chain_id after setup ethermintd config chain-id * fix lint * fix err msg due to empty version check fix for more info, see https://github.com/cosmos/cosmos-sdk/pull/13355/files * add the crisis store in store upgrades * fix lint * add consensus upgrade * migrate consensus parameters * fix lint * allow flag overwrite chainId * fix ConsensusParams fix evm * fix lint * add paramKeyTable * add change log * err code change due to nested msg check * fix lint * cleanup mod * add nil check for consParams.Block * Revert "fix ConsensusParams" This reverts commit b739244. * sdk to v0.47.3 and ibc-go to v7.1.0 * point to logger fix * get consParams from keeper if not in ctx * point back cometbft * fix broadcast mode * fix lint * update default params for test * cleanup deps * fix ibc client route in gov router * fix broadcast mode * fix ibctm for more info, see https://github.com/cosmos/ibc-go/blob/v7.2.0/docs/migrations/v6-to-v7.md#chains * point to sdk cp fix * Update rpc/backend/utils.go Co-authored-by: yihuang <huang@crypto.com> Signed-off-by: mmsqe <mavis@crypto.com> * Update rpc/types/utils.go Co-authored-by: yihuang <huang@crypto.com> Signed-off-by: mmsqe <mavis@crypto.com> * fix build * revert get params by consensusparamkeeper * keep validator err msg * Revert "keep validator err msg" This reverts commit 20253ce. * test with more retries * add expect_cb * fix hooks * rm RandomizedParams ProposalContents * prune expire state --------- Signed-off-by: mmsqe <mavis@crypto.com> Co-authored-by: jay tseng <jay.tseng@crypto.com> Co-authored-by: yihuang <huang@crypto.com>
Reopen #1687
Description
For contributor use:
docs/
) or specification (x/<module>/spec/
)godoc
comments.Unreleased
section inCHANGELOG.md
Files changed
in the Github PR explorerFor admin use:
WIP
,R4R
,docs
, etc)