fix: make 46's linter work (#13186)
This commit is contained in:
parent
8121f349d4
commit
25e7f9bee2
|
@ -1,12 +1,15 @@
|
|||
name: Lint
|
||||
# Lint runs golangci-lint over the entire cosmos-sdk repository
|
||||
# This workflow is run on every pull request and push to main
|
||||
# The `golangci` will pass without running if no *.{go, mod, sum} files have been changed.
|
||||
on:
|
||||
pull_request:
|
||||
push:
|
||||
tags:
|
||||
- v*
|
||||
branches:
|
||||
- main
|
||||
pull_request:
|
||||
permissions:
|
||||
contents: read
|
||||
# Optional: allow read access to pull request. Use with `only-new-issues` option.
|
||||
# pull-requests: read
|
||||
jobs:
|
||||
golangci:
|
||||
name: golangci-lint
|
||||
|
@ -14,18 +17,10 @@ jobs:
|
|||
steps:
|
||||
- uses: actions/setup-go@v3
|
||||
with:
|
||||
go-version: 1.18
|
||||
- uses: technote-space/get-diff-action@v6.0.1
|
||||
id: git_diff
|
||||
with:
|
||||
PATTERNS: |
|
||||
**/**.go
|
||||
go.mod
|
||||
go.sum
|
||||
go-version: 1.19
|
||||
- uses: actions/checkout@v3
|
||||
- name: golangci-lint
|
||||
uses: golangci/golangci-lint-action@v3
|
||||
with:
|
||||
# Optional: version of golangci-lint to use in form of v1.2 or v1.2.3 or `latest` to use the latest version
|
||||
version: latest
|
||||
args: --out-format=tab
|
||||
skip-go-installation: true
|
||||
if: env.GIT_DIFF
|
||||
|
|
|
@ -6,16 +6,12 @@ run:
|
|||
linters:
|
||||
disable-all: true
|
||||
enable:
|
||||
- bodyclose
|
||||
- deadcode
|
||||
- depguard
|
||||
- dogsled
|
||||
# - errcheck
|
||||
- exportloopref
|
||||
- goconst
|
||||
- gocritic
|
||||
- gofmt
|
||||
- goimports
|
||||
- gofumpt
|
||||
- gosec
|
||||
- gosimple
|
||||
- govet
|
||||
|
@ -23,28 +19,17 @@ linters:
|
|||
- misspell
|
||||
- nakedret
|
||||
- nolintlint
|
||||
- prealloc
|
||||
- revive
|
||||
- staticcheck
|
||||
- structcheck
|
||||
- stylecheck
|
||||
- typecheck
|
||||
- unconvert
|
||||
- unparam
|
||||
- unused
|
||||
# - wsl
|
||||
|
||||
issues:
|
||||
exclude-rules:
|
||||
- text: "Use of weak random number generator"
|
||||
linters:
|
||||
- gosec
|
||||
- text: "comment on exported var"
|
||||
linters:
|
||||
- golint
|
||||
- text: "don't use an underscore in package name"
|
||||
linters:
|
||||
- golint
|
||||
- text: "ST1003:"
|
||||
linters:
|
||||
- stylecheck
|
||||
|
@ -53,6 +38,9 @@ issues:
|
|||
- text: "ST1016:"
|
||||
linters:
|
||||
- stylecheck
|
||||
- text: "should be written without leading space as"
|
||||
linters:
|
||||
- nolintlint
|
||||
- path: "migrations"
|
||||
text: "SA1019:"
|
||||
linters:
|
||||
|
@ -69,6 +57,5 @@ linters-settings:
|
|||
suggest-new: true
|
||||
nolintlint:
|
||||
allow-unused: false
|
||||
allow-leading-space: true
|
||||
require-explanation: false
|
||||
require-specific: false
|
||||
require-specific: false
|
|
@ -3421,7 +3421,7 @@ BREAKING CHANGES
|
|||
* SDK
|
||||
* [baseapp] Msgs are no longer run on CheckTx, removed `ctx.IsCheckTx()`
|
||||
* [baseapp] NewBaseApp constructor takes sdk.TxDecoder as argument instead of wire.Codec
|
||||
* [types] sdk.NewCoin takes sdk.Int, sdk.NewInt64Coin takes int64
|
||||
* [types] sdk.NewCoin takes math.Int, sdk.NewInt64Coin takes int64
|
||||
* [x/auth] Default TxDecoder can be found in `x/auth` rather than baseapp
|
||||
* [client] [\#1551](https://github.com/cosmos/cosmos-sdk/issues/1551): Refactored `CoreContext` to `TxContext` and `QueryContext`
|
||||
* Removed all tx related fields and logic (building & signing) to separate
|
||||
|
@ -3747,7 +3747,7 @@ BREAKING CHANGES
|
|||
|
||||
* msg.GetSignBytes() now returns bech32-encoded addresses in all cases
|
||||
* [lcd] REST end-points now include gas
|
||||
* sdk.Coin now uses sdk.Int, a big.Int wrapper with 256bit range cap
|
||||
* sdk.Coin now uses math.Int, a big.Int wrapper with 256bit range cap
|
||||
|
||||
FEATURES
|
||||
|
||||
|
|
2
Makefile
2
Makefile
|
@ -361,6 +361,8 @@ lint-go:
|
|||
.PHONY: lint lint-fix
|
||||
|
||||
format:
|
||||
@go install mvdan.cc/gofumpt@latest
|
||||
@go install github.com/golangci/golangci-lint/cmd/golangci-lint@latest
|
||||
find . -name '*.go' -type f -not -path "./vendor*" -not -path "*.git*" -not -path "./client/docs/statik/statik.go" -not -path "./tests/mocks/*" -not -name "*.pb.go" -not -name "*.pb.gw.go" -not -name "*.pulsar.go" -not -path "./crypto/keys/secp256k1/*" | xargs gofumpt -w -l
|
||||
golangci-lint run --fix
|
||||
.PHONY: format
|
||||
|
|
|
@ -11,7 +11,6 @@ import (
|
|||
tmproto "github.com/tendermint/tendermint/proto/tendermint/types"
|
||||
dbm "github.com/tendermint/tm-db"
|
||||
|
||||
"github.com/cosmos/cosmos-sdk/codec/types"
|
||||
codectypes "github.com/cosmos/cosmos-sdk/codec/types"
|
||||
"github.com/cosmos/cosmos-sdk/snapshots"
|
||||
"github.com/cosmos/cosmos-sdk/store"
|
||||
|
@ -54,7 +53,7 @@ type BaseApp struct { // nolint: maligned
|
|||
queryRouter sdk.QueryRouter // router for redirecting query calls
|
||||
grpcQueryRouter *GRPCQueryRouter // router for redirecting gRPC query calls
|
||||
msgServiceRouter *MsgServiceRouter // router for redirecting Msg service messages
|
||||
interfaceRegistry types.InterfaceRegistry
|
||||
interfaceRegistry codectypes.InterfaceRegistry
|
||||
txDecoder sdk.TxDecoder // unmarshal []byte into sdk.Tx
|
||||
|
||||
anteHandler sdk.AnteHandler // ante handler for fee and auth
|
||||
|
|
|
@ -1295,7 +1295,6 @@ func TestTxGasLimits(t *testing.T) {
|
|||
|
||||
return newCtx, nil
|
||||
})
|
||||
|
||||
}
|
||||
|
||||
routerOpt := func(bapp *BaseApp) {
|
||||
|
|
|
@ -46,9 +46,9 @@ func (msr *MsgServiceRouter) HandlerByTypeURL(typeURL string) MsgServiceHandler
|
|||
// service description, handler is an object which implements that gRPC service.
|
||||
//
|
||||
// This function PANICs:
|
||||
// - if it is called before the service `Msg`s have been registered using
|
||||
// RegisterInterfaces,
|
||||
// - or if a service is being registered twice.
|
||||
// - if it is called before the service `Msg`s have been registered using
|
||||
// RegisterInterfaces,
|
||||
// - or if a service is being registered twice.
|
||||
func (msr *MsgServiceRouter) RegisterService(sd *grpc.ServiceDesc, handler interface{}) {
|
||||
// Adds a top-level query handler based on the gRPC service name.
|
||||
for _, method := range sd.Methods {
|
||||
|
|
|
@ -268,7 +268,7 @@ func readTxCommandFlags(clientCtx Context, flagSet *pflag.FlagSet) (Context, err
|
|||
isAux, _ := flagSet.GetBool(flags.FlagAux)
|
||||
clientCtx = clientCtx.WithAux(isAux)
|
||||
if isAux {
|
||||
// If the user didn't explicity set an --output flag, use JSON by
|
||||
// If the user didn't explicitly set an --output flag, use JSON by
|
||||
// default.
|
||||
if clientCtx.OutputFormat == "" || !flagSet.Changed(cli.OutputFlag) {
|
||||
clientCtx = clientCtx.WithOutputFormat("json")
|
||||
|
|
|
@ -17,7 +17,7 @@ import (
|
|||
"github.com/cosmos/cosmos-sdk/types/errors"
|
||||
"github.com/cosmos/cosmos-sdk/version"
|
||||
|
||||
legacybech32 "github.com/cosmos/cosmos-sdk/types/bech32/legacybech32"
|
||||
legacybech32 "github.com/cosmos/cosmos-sdk/types/bech32/legacybech32" //nolint:staticcheck
|
||||
)
|
||||
|
||||
var flagPubkeyType = "type"
|
||||
|
@ -69,7 +69,7 @@ $ %s debug pubkey '{"@type":"/cosmos.crypto.secp256k1.PubKey","key":"AurroA7jvfP
|
|||
}
|
||||
|
||||
func bytesToPubkey(bz []byte, keytype string) (cryptotypes.PubKey, bool) {
|
||||
if keytype == "ed25519" {
|
||||
if keytype == "ed25519" { //nolint:goconst
|
||||
if len(bz) == ed25519.PubKeySize {
|
||||
return &ed25519.PubKey{Key: bz}, true
|
||||
}
|
||||
|
@ -102,17 +102,17 @@ func getPubKeyFromRawString(pkstr string, keytype string) (cryptotypes.PubKey, e
|
|||
}
|
||||
}
|
||||
|
||||
pk, err := legacybech32.UnmarshalPubKey(legacybech32.AccPK, pkstr)
|
||||
pk, err := legacybech32.UnmarshalPubKey(legacybech32.AccPK, pkstr) //nolint:staticcheck
|
||||
if err == nil {
|
||||
return pk, nil
|
||||
}
|
||||
|
||||
pk, err = legacybech32.UnmarshalPubKey(legacybech32.ValPK, pkstr)
|
||||
pk, err = legacybech32.UnmarshalPubKey(legacybech32.ValPK, pkstr) //nolint:staticcheck
|
||||
if err == nil {
|
||||
return pk, nil
|
||||
}
|
||||
|
||||
pk, err = legacybech32.UnmarshalPubKey(legacybech32.ConsPK, pkstr)
|
||||
pk, err = legacybech32.UnmarshalPubKey(legacybech32.ConsPK, pkstr) //nolint:staticcheck
|
||||
if err == nil {
|
||||
return pk, nil
|
||||
}
|
||||
|
@ -150,7 +150,7 @@ $ %s debug pubkey-raw cosmos1e0jnq2sun3dzjh8p2xq95kk0expwmd7shwjpfg
|
|||
var consensusPub string
|
||||
edPK, ok := pk.(*ed25519.PubKey)
|
||||
if ok && pubkeyType == "ed25519" {
|
||||
consensusPub, err = legacybech32.MarshalPubKey(legacybech32.ConsPK, edPK)
|
||||
consensusPub, err = legacybech32.MarshalPubKey(legacybech32.ConsPK, edPK) //nolint:staticcheck
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
|
@ -163,11 +163,11 @@ $ %s debug pubkey-raw cosmos1e0jnq2sun3dzjh8p2xq95kk0expwmd7shwjpfg
|
|||
if err != nil {
|
||||
return err
|
||||
}
|
||||
accPub, err := legacybech32.MarshalPubKey(legacybech32.AccPK, pk)
|
||||
accPub, err := legacybech32.MarshalPubKey(legacybech32.AccPK, pk) //nolint:staticcheck
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
valPub, err := legacybech32.MarshalPubKey(legacybech32.ValPK, pk)
|
||||
valPub, err := legacybech32.MarshalPubKey(legacybech32.ValPK, pk) //nolint:staticcheck
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
|
|
|
@ -93,12 +93,13 @@ func runAddCmdPrepare(cmd *cobra.Command, args []string) error {
|
|||
|
||||
/*
|
||||
input
|
||||
- bip39 mnemonic
|
||||
- bip39 passphrase
|
||||
- bip44 path
|
||||
- local encryption password
|
||||
- bip39 mnemonic
|
||||
- bip39 passphrase
|
||||
- bip44 path
|
||||
- local encryption password
|
||||
|
||||
output
|
||||
- armor encrypted private key (saved to file)
|
||||
- armor encrypted private key (saved to file)
|
||||
*/
|
||||
func runAddCmd(ctx client.Context, cmd *cobra.Command, args []string, inBuf *bufio.Reader) error {
|
||||
var err error
|
||||
|
@ -298,7 +299,7 @@ func printCreate(cmd *cobra.Command, k *keyring.Record, showMnemonic bool, mnemo
|
|||
|
||||
// print mnemonic unless requested not to.
|
||||
if showMnemonic {
|
||||
if _, err := fmt.Fprintln(cmd.ErrOrStderr(), fmt.Sprintf("\n**Important** write this mnemonic phrase in a safe place.\nIt is the only way to recover your account if you ever forget your password.\n\n%s\n", mnemonic)); err != nil {
|
||||
if _, err := fmt.Fprintln(cmd.ErrOrStderr(), fmt.Sprintf("\n**Important** write this mnemonic phrase in a safe place.\nIt is the only way to recover your account if you ever forget your password.\n\n%s\n", mnemonic)); err != nil { //nolint:gosimple
|
||||
return fmt.Errorf("failed to print mnemonic: %v", err)
|
||||
}
|
||||
}
|
||||
|
|
|
@ -286,7 +286,7 @@ func Sign(txf Factory, name string, txBuilder client.TxBuilder, overwriteSig boo
|
|||
if overwriteSig {
|
||||
sigs = []signing.SignatureV2{sig}
|
||||
} else {
|
||||
sigs = append(prevSignatures, sig)
|
||||
sigs = append(prevSignatures, sig) //nolint:gocritic
|
||||
}
|
||||
if err := txBuilder.SetSignatures(sigs...); err != nil {
|
||||
return err
|
||||
|
|
|
@ -96,8 +96,9 @@ func (ac *AminoCodec) MarshalInterface(i proto.Message) ([]byte, error) {
|
|||
// NOTE: to unmarshal a concrete type, you should use Unmarshal instead
|
||||
//
|
||||
// Example:
|
||||
// var x MyInterface
|
||||
// err := cdc.UnmarshalInterface(bz, &x)
|
||||
//
|
||||
// var x MyInterface
|
||||
// err := cdc.UnmarshalInterface(bz, &x)
|
||||
func (ac *AminoCodec) UnmarshalInterface(bz []byte, ptr interface{}) error {
|
||||
return ac.LegacyAmino.Unmarshal(bz, ptr)
|
||||
}
|
||||
|
@ -117,8 +118,9 @@ func (ac *AminoCodec) MarshalInterfaceJSON(i proto.Message) ([]byte, error) {
|
|||
// NOTE: to unmarshal a concrete type, you should use UnmarshalJSON instead
|
||||
//
|
||||
// Example:
|
||||
// var x MyInterface
|
||||
// err := cdc.UnmarshalInterfaceJSON(bz, &x)
|
||||
//
|
||||
// var x MyInterface
|
||||
// err := cdc.UnmarshalInterfaceJSON(bz, &x)
|
||||
func (ac *AminoCodec) UnmarshalInterfaceJSON(bz []byte, ptr interface{}) error {
|
||||
return ac.LegacyAmino.UnmarshalJSON(bz, ptr)
|
||||
}
|
||||
|
|
|
@ -6,7 +6,7 @@ import (
|
|||
"fmt"
|
||||
"strings"
|
||||
|
||||
legacyproto "github.com/golang/protobuf/proto"
|
||||
legacyproto "github.com/golang/protobuf/proto" //nolint:staticcheck
|
||||
"google.golang.org/grpc/encoding"
|
||||
"google.golang.org/protobuf/proto"
|
||||
|
||||
|
@ -204,8 +204,9 @@ func (pc *ProtoCodec) MarshalInterface(i gogoproto.Message) ([]byte, error) {
|
|||
// NOTE: to unmarshal a concrete type, you should use Unmarshal instead
|
||||
//
|
||||
// Example:
|
||||
// var x MyInterface
|
||||
// err := cdc.UnmarshalInterface(bz, &x)
|
||||
//
|
||||
// var x MyInterface
|
||||
// err := cdc.UnmarshalInterface(bz, &x)
|
||||
func (pc *ProtoCodec) UnmarshalInterface(bz []byte, ptr interface{}) error {
|
||||
any := &types.Any{}
|
||||
err := pc.Unmarshal(bz, any)
|
||||
|
@ -233,8 +234,9 @@ func (pc *ProtoCodec) MarshalInterfaceJSON(x gogoproto.Message) ([]byte, error)
|
|||
// NOTE: to unmarshal a concrete type, you should use UnmarshalJSON instead
|
||||
//
|
||||
// Example:
|
||||
// var x MyInterface // must implement proto.Message
|
||||
// err := cdc.UnmarshalInterfaceJSON(&x, bz)
|
||||
//
|
||||
// var x MyInterface // must implement proto.Message
|
||||
// err := cdc.UnmarshalInterfaceJSON(&x, bz)
|
||||
func (pc *ProtoCodec) UnmarshalInterfaceJSON(bz []byte, iface interface{}) error {
|
||||
any := &types.Any{}
|
||||
err := pc.UnmarshalJSON(bz, any)
|
||||
|
|
|
@ -37,18 +37,14 @@ type Any struct {
|
|||
// Schemes other than `http`, `https` (or the empty scheme) might be
|
||||
// used with implementation specific semantics.
|
||||
|
||||
// nolint
|
||||
TypeUrl string `protobuf:"bytes,1,opt,name=type_url,json=typeUrl,proto3" json:"type_url,omitempty"`
|
||||
// Must be a valid serialized protocol buffer of the above specified type.
|
||||
Value []byte `protobuf:"bytes,2,opt,name=value,proto3" json:"value,omitempty"`
|
||||
|
||||
// nolint
|
||||
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
||||
|
||||
// nolint
|
||||
XXX_unrecognized []byte `json:"-"`
|
||||
|
||||
// nolint
|
||||
XXX_sizecache int32 `json:"-"`
|
||||
|
||||
cachedValue interface{}
|
||||
|
|
|
@ -8,17 +8,17 @@ b) Mismatched wire types for a field -- this is indicative of mismatched service
|
|||
|
||||
Its API signature is similar to proto.Unmarshal([]byte, proto.Message) in the strict case
|
||||
|
||||
if err := RejectUnknownFieldsStrict(protoBlob, protoMessage, false); err != nil {
|
||||
// Handle the error.
|
||||
}
|
||||
if err := RejectUnknownFieldsStrict(protoBlob, protoMessage, false); err != nil {
|
||||
// Handle the error.
|
||||
}
|
||||
|
||||
and ideally should be added before invoking proto.Unmarshal, if you'd like to enforce the features mentioned above.
|
||||
|
||||
By default, for security we report every single field that's unknown, whether a non-critical field or not. To customize
|
||||
this behavior, please set the boolean parameter allowUnknownNonCriticals to true to RejectUnknownFields:
|
||||
|
||||
if err := RejectUnknownFields(protoBlob, protoMessage, true); err != nil {
|
||||
// Handle the error.
|
||||
}
|
||||
if err := RejectUnknownFields(protoBlob, protoMessage, true); err != nil {
|
||||
// Handle the error.
|
||||
}
|
||||
*/
|
||||
package unknownproto
|
||||
|
|
|
@ -7,8 +7,9 @@ package container
|
|||
// can be provided by the container.
|
||||
//
|
||||
// Ex:
|
||||
// var x int
|
||||
// Build(Provide(func() int { return 1 }), &x)
|
||||
//
|
||||
// var x int
|
||||
// Build(Provide(func() int { return 1 }), &x)
|
||||
//
|
||||
// Build uses the debug mode provided by AutoDebug which means there will be
|
||||
// verbose debugging information if there is an error and nothing upon success.
|
||||
|
|
|
@ -236,7 +236,7 @@ func (c *debugConfig) enableLogVisualizer() {
|
|||
func (c *debugConfig) addFileVisualizer(filename string) {
|
||||
c.visualizers = append(c.visualizers, func(_ string) {
|
||||
dotStr := c.graph.String()
|
||||
err := os.WriteFile(filename, []byte(dotStr), 0644)
|
||||
err := os.WriteFile(filename, []byte(dotStr), 0o644)
|
||||
if err != nil {
|
||||
c.logf("Error saving graphviz file %s: %+v", filename, err)
|
||||
} else {
|
||||
|
|
|
@ -9,7 +9,8 @@ import (
|
|||
// ProviderDescriptor defines a special provider type that is defined by
|
||||
// reflection. It should be passed as a value to the Provide function.
|
||||
// Ex:
|
||||
// option.Provide(ProviderDescriptor{ ... })
|
||||
//
|
||||
// option.Provide(ProviderDescriptor{ ... })
|
||||
type ProviderDescriptor struct {
|
||||
// Inputs defines the in parameter types to Fn.
|
||||
Inputs []ProviderInput
|
||||
|
|
|
@ -12,9 +12,10 @@ import (
|
|||
// positional parameters.
|
||||
//
|
||||
// Fields of the struct may support the following tags:
|
||||
// optional if set to true, the dependency is optional and will
|
||||
// be set to its default value if not found, rather than causing
|
||||
// an error
|
||||
//
|
||||
// optional if set to true, the dependency is optional and will
|
||||
// be set to its default value if not found, rather than causing
|
||||
// an error
|
||||
type In struct{}
|
||||
|
||||
func (In) isIn() {}
|
||||
|
|
|
@ -81,7 +81,6 @@ func Compose(appConfig *appv1alpha1.Config) container.Option {
|
|||
config := init.ConfigProtoMessage.ProtoReflect().Type().New().Interface()
|
||||
err = anypb.UnmarshalTo(module.Config, config, proto.UnmarshalOptions{})
|
||||
if err != nil {
|
||||
|
||||
return container.Error(err)
|
||||
}
|
||||
|
||||
|
|
|
@ -77,8 +77,9 @@ func (c *cosmovisorEnv) Set(envVar, envVal string) {
|
|||
|
||||
// clearEnv clears environment variables and what they were.
|
||||
// Designed to be used like this:
|
||||
// initialEnv := clearEnv()
|
||||
// defer setEnv(nil, initialEnv)
|
||||
//
|
||||
// initialEnv := clearEnv()
|
||||
// defer setEnv(nil, initialEnv)
|
||||
func (s *argsTestSuite) clearEnv() *cosmovisorEnv {
|
||||
s.T().Logf("Clearing environment variables.")
|
||||
rv := cosmovisorEnv{}
|
||||
|
|
|
@ -47,8 +47,9 @@ func (c *cosmovisorHelpEnv) Set(envVar, envVal string) {
|
|||
|
||||
// clearEnv clears environment variables and returns what they were.
|
||||
// Designed to be used like this:
|
||||
// initialEnv := clearEnv()
|
||||
// defer setEnv(nil, initialEnv)
|
||||
//
|
||||
// initialEnv := clearEnv()
|
||||
// defer setEnv(nil, initialEnv)
|
||||
func (s *HelpTestSuite) clearEnv() *cosmovisorHelpEnv {
|
||||
s.T().Logf("Clearing environment variables.")
|
||||
rv := cosmovisorHelpEnv{}
|
||||
|
|
|
@ -3,46 +3,53 @@ module github.com/cosmos/cosmos-sdk/cosmovisor
|
|||
go 1.18
|
||||
|
||||
require (
|
||||
github.com/cosmos/cosmos-sdk v0.46.0-beta2
|
||||
github.com/cosmos/cosmos-sdk v0.46.1
|
||||
github.com/hashicorp/go-getter v1.6.1
|
||||
github.com/otiai10/copy v1.7.0
|
||||
github.com/rs/zerolog v1.26.1
|
||||
github.com/spf13/cobra v1.4.0
|
||||
github.com/stretchr/testify v1.7.1
|
||||
github.com/tendermint/tendermint v0.35.4
|
||||
github.com/rs/zerolog v1.27.0
|
||||
github.com/spf13/cobra v1.5.0
|
||||
github.com/stretchr/testify v1.8.0
|
||||
github.com/tendermint/tendermint v0.34.21
|
||||
)
|
||||
|
||||
require (
|
||||
cloud.google.com/go v0.100.2 // indirect
|
||||
cloud.google.com/go/compute v1.5.0 // indirect
|
||||
cloud.google.com/go/compute v1.6.1 // indirect
|
||||
cloud.google.com/go/iam v0.3.0 // indirect
|
||||
cloud.google.com/go/storage v1.14.0 // indirect
|
||||
cosmossdk.io/errors v1.0.0-beta.7 // indirect
|
||||
cosmossdk.io/math v1.0.0-beta.3 // indirect
|
||||
filippo.io/edwards25519 v1.0.0-rc.1 // indirect
|
||||
github.com/99designs/keyring v1.1.6 // indirect
|
||||
github.com/armon/go-metrics v0.3.10 // indirect
|
||||
github.com/99designs/go-keychain v0.0.0-20191008050251-8e49817e8af4 // indirect
|
||||
github.com/99designs/keyring v1.2.1 // indirect
|
||||
github.com/ChainSafe/go-schnorrkel v0.0.0-20200405005733-88cbf1b4c40d // indirect
|
||||
github.com/armon/go-metrics v0.4.0 // indirect
|
||||
github.com/aws/aws-sdk-go v1.40.45 // indirect
|
||||
github.com/beorn7/perks v1.0.1 // indirect
|
||||
github.com/bgentry/go-netrc v0.0.0-20140422174119-9fd32a8b3d3d // indirect
|
||||
github.com/bgentry/speakeasy v0.1.0 // indirect
|
||||
github.com/btcsuite/btcd v0.22.0-beta // indirect
|
||||
github.com/btcsuite/btcd v0.22.1 // indirect
|
||||
github.com/cespare/xxhash v1.1.0 // indirect
|
||||
github.com/cespare/xxhash/v2 v2.1.2 // indirect
|
||||
github.com/confio/ics23/go v0.7.0 // indirect
|
||||
github.com/cosmos/btcutil v1.0.4 // indirect
|
||||
github.com/cosmos/cosmos-proto v1.0.0-alpha7 // indirect
|
||||
github.com/cosmos/cosmos-sdk/errors v1.0.0-beta.3 // indirect
|
||||
github.com/cosmos/go-bip39 v1.0.0 // indirect
|
||||
github.com/cosmos/iavl v0.18.0 // indirect
|
||||
github.com/cosmos/gorocksdb v1.2.0 // indirect
|
||||
github.com/cosmos/iavl v0.19.1 // indirect
|
||||
github.com/cosmos/ledger-cosmos-go v0.11.1 // indirect
|
||||
github.com/cosmos/ledger-go v0.9.2 // indirect
|
||||
github.com/danieljoos/wincred v1.0.2 // indirect
|
||||
github.com/danieljoos/wincred v1.1.2 // indirect
|
||||
github.com/davecgh/go-spew v1.1.1 // indirect
|
||||
github.com/dgraph-io/badger/v2 v2.2007.4 // indirect
|
||||
github.com/dgraph-io/ristretto v0.1.0 // indirect
|
||||
github.com/dgryski/go-farm v0.0.0-20200201041132-a6ae2369ad13 // indirect
|
||||
github.com/dustin/go-humanize v1.0.0 // indirect
|
||||
github.com/dvsekhvalnov/jose2go v0.0.0-20200901110807-248326c1351b // indirect
|
||||
github.com/fsnotify/fsnotify v1.5.1 // indirect
|
||||
github.com/dvsekhvalnov/jose2go v1.5.0 // indirect
|
||||
github.com/fsnotify/fsnotify v1.5.4 // indirect
|
||||
github.com/go-kit/kit v0.12.0 // indirect
|
||||
github.com/go-kit/log v0.2.1 // indirect
|
||||
github.com/go-logfmt/logfmt v0.5.1 // indirect
|
||||
github.com/godbus/dbus v0.0.0-20190726142602-4481cbc300e2 // indirect
|
||||
github.com/gogo/protobuf v1.3.3 // indirect
|
||||
github.com/golang/glog v1.0.0 // indirect
|
||||
|
@ -50,75 +57,76 @@ require (
|
|||
github.com/golang/protobuf v1.5.2 // indirect
|
||||
github.com/golang/snappy v0.0.4 // indirect
|
||||
github.com/google/btree v1.0.1 // indirect
|
||||
github.com/google/uuid v1.3.0 // indirect
|
||||
github.com/googleapis/gax-go/v2 v2.3.0 // indirect
|
||||
github.com/gorilla/mux v1.8.0 // indirect
|
||||
github.com/googleapis/gax-go/v2 v2.4.0 // indirect
|
||||
github.com/gorilla/websocket v1.5.0 // indirect
|
||||
github.com/grpc-ecosystem/go-grpc-middleware v1.3.0 // indirect
|
||||
github.com/grpc-ecosystem/grpc-gateway v1.16.0 // indirect
|
||||
github.com/gsterjov/go-libsecret v0.0.0-20161001094733-a6f4afe4910c // indirect
|
||||
github.com/gtank/merlin v0.1.1 // indirect
|
||||
github.com/gtank/ristretto255 v0.1.2 // indirect
|
||||
github.com/hashicorp/go-cleanhttp v0.5.2 // indirect
|
||||
github.com/hashicorp/go-immutable-radix v1.3.1 // indirect
|
||||
github.com/hashicorp/go-safetemp v1.0.0 // indirect
|
||||
github.com/hashicorp/go-version v1.4.0 // indirect
|
||||
github.com/hashicorp/go-version v1.6.0 // indirect
|
||||
github.com/hashicorp/golang-lru v0.5.5-0.20210104140557-80c98217689d // indirect
|
||||
github.com/hashicorp/hcl v1.0.0 // indirect
|
||||
github.com/hdevalence/ed25519consensus v0.0.0-20220222234857-c00d1f31bab3 // indirect
|
||||
github.com/inconshreveable/mousetrap v1.0.0 // indirect
|
||||
github.com/jmespath/go-jmespath v0.4.0 // indirect
|
||||
github.com/jmhodges/levigo v1.0.0 // indirect
|
||||
github.com/keybase/go-keychain v0.0.0-20190712205309-48d3d31d256d // indirect
|
||||
github.com/klauspost/compress v1.13.6 // indirect
|
||||
github.com/klauspost/compress v1.15.9 // indirect
|
||||
github.com/libp2p/go-buffer-pool v0.1.0 // indirect
|
||||
github.com/magiconair/properties v1.8.6 // indirect
|
||||
github.com/mattn/go-colorable v0.1.12 // indirect
|
||||
github.com/mattn/go-isatty v0.0.14 // indirect
|
||||
github.com/matttproud/golang_protobuf_extensions v1.0.1 // indirect
|
||||
github.com/matttproud/golang_protobuf_extensions v1.0.2-0.20181231171920-c182affec369 // indirect
|
||||
github.com/mimoo/StrobeGo v0.0.0-20181016162300-f8f6d4d2b643 // indirect
|
||||
github.com/mitchellh/go-homedir v1.1.0 // indirect
|
||||
github.com/mitchellh/go-testing-interface v1.0.0 // indirect
|
||||
github.com/mitchellh/mapstructure v1.4.3 // indirect
|
||||
github.com/mitchellh/mapstructure v1.5.0 // indirect
|
||||
github.com/mtibben/percent v0.2.1 // indirect
|
||||
github.com/oasisprotocol/curve25519-voi v0.0.0-20210609091139-0a56a4bca00b // indirect
|
||||
github.com/pelletier/go-toml v1.9.4 // indirect
|
||||
github.com/pelletier/go-toml/v2 v2.0.0-beta.8 // indirect
|
||||
github.com/pelletier/go-toml v1.9.5 // indirect
|
||||
github.com/pelletier/go-toml/v2 v2.0.2 // indirect
|
||||
github.com/petermattis/goid v0.0.0-20180202154549-b0b1615b78e5 // indirect
|
||||
github.com/pkg/errors v0.9.1 // indirect
|
||||
github.com/pmezard/go-difflib v1.0.0 // indirect
|
||||
github.com/prometheus/client_golang v1.12.1 // indirect
|
||||
github.com/prometheus/client_golang v1.12.2 // indirect
|
||||
github.com/prometheus/client_model v0.2.0 // indirect
|
||||
github.com/prometheus/common v0.33.0 // indirect
|
||||
github.com/prometheus/common v0.34.0 // indirect
|
||||
github.com/prometheus/procfs v0.7.3 // indirect
|
||||
github.com/rcrowley/go-metrics v0.0.0-20200313005456-10cdbea86bc0 // indirect
|
||||
github.com/sasha-s/go-deadlock v0.2.1-0.20190427202633-1595213edefa // indirect
|
||||
github.com/spf13/afero v1.8.2 // indirect
|
||||
github.com/spf13/cast v1.4.1 // indirect
|
||||
github.com/spf13/cast v1.5.0 // indirect
|
||||
github.com/spf13/jwalterweatherman v1.1.0 // indirect
|
||||
github.com/spf13/pflag v1.0.5 // indirect
|
||||
github.com/spf13/viper v1.11.0 // indirect
|
||||
github.com/subosito/gotenv v1.2.0 // indirect
|
||||
github.com/spf13/viper v1.12.0 // indirect
|
||||
github.com/subosito/gotenv v1.4.0 // indirect
|
||||
github.com/syndtr/goleveldb v1.0.1-0.20210819022825-2ae1ddf74ef7 // indirect
|
||||
github.com/tecbot/gorocksdb v0.0.0-20191217155057-f0fad39f321c // indirect
|
||||
github.com/tendermint/btcd v0.1.1 // indirect
|
||||
github.com/tendermint/crypto v0.0.0-20191022145703-50d29ede1e15 // indirect
|
||||
github.com/tendermint/go-amino v0.16.0 // indirect
|
||||
github.com/tendermint/tm-db v0.6.6 // indirect
|
||||
github.com/tendermint/tm-db v0.6.7 // indirect
|
||||
github.com/ulikunitz/xz v0.5.8 // indirect
|
||||
github.com/zondax/hid v0.9.1-0.20220302062450-5552068d2266 // indirect
|
||||
go.etcd.io/bbolt v1.3.6 // indirect
|
||||
go.opencensus.io v0.23.0 // indirect
|
||||
golang.org/x/crypto v0.0.0-20220411220226-7b82a4e95df4 // indirect
|
||||
golang.org/x/net v0.0.0-20220412020605-290c469a71a5 // indirect
|
||||
golang.org/x/crypto v0.0.0-20220525230936-793ad666bf5e // indirect
|
||||
golang.org/x/exp v0.0.0-20220722155223-a9213eeb770e // indirect
|
||||
golang.org/x/net v0.0.0-20220726230323-06994584191e // indirect
|
||||
golang.org/x/oauth2 v0.0.0-20220411215720-9780585627b5 // indirect
|
||||
golang.org/x/sys v0.0.0-20220517195934-5e4e11fc645e // indirect
|
||||
golang.org/x/term v0.0.0-20210927222741-03fcf44c2211 // indirect
|
||||
golang.org/x/sys v0.0.0-20220727055044-e65921a090b8 // indirect
|
||||
golang.org/x/term v0.0.0-20220722155259-a9ba230a4035 // indirect
|
||||
golang.org/x/text v0.3.7 // indirect
|
||||
golang.org/x/xerrors v0.0.0-20220411194840-2f41105eb62f // indirect
|
||||
google.golang.org/api v0.74.0 // indirect
|
||||
golang.org/x/xerrors v0.0.0-20220517211312-f3a8303e98df // indirect
|
||||
google.golang.org/api v0.81.0 // indirect
|
||||
google.golang.org/appengine v1.6.7 // indirect
|
||||
google.golang.org/genproto v0.0.0-20220407144326-9054f6ed7bac // indirect
|
||||
google.golang.org/grpc v1.45.0 // indirect
|
||||
google.golang.org/genproto v0.0.0-20220725144611-272f38e5d71b // indirect
|
||||
google.golang.org/grpc v1.48.0 // indirect
|
||||
google.golang.org/protobuf v1.28.0 // indirect
|
||||
gopkg.in/ini.v1 v1.66.4 // indirect
|
||||
gopkg.in/ini.v1 v1.66.6 // indirect
|
||||
gopkg.in/yaml.v2 v2.4.0 // indirect
|
||||
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b // indirect
|
||||
gopkg.in/yaml.v3 v3.0.1 // indirect
|
||||
sigs.k8s.io/yaml v1.3.0 // indirect
|
||||
)
|
||||
|
||||
|
|
File diff suppressed because it is too large
Load Diff
|
@ -217,7 +217,8 @@ func IsSkipUpgradeHeight(args []string, upgradeInfo upgradetypes.Plan) bool {
|
|||
}
|
||||
|
||||
// UpgradeSkipHeights gets all the heights provided when
|
||||
// simd start --unsafe-skip-upgrades <height1> <optional_height_2> ... <optional_height_N>
|
||||
//
|
||||
// simd start --unsafe-skip-upgrades <height1> <optional_height_2> ... <optional_height_N>
|
||||
func UpgradeSkipHeights(args []string) []int {
|
||||
var heights []int
|
||||
for i, arg := range args {
|
||||
|
|
|
@ -4,7 +4,7 @@ import (
|
|||
"bytes"
|
||||
"encoding/hex"
|
||||
"fmt"
|
||||
"io/ioutil"
|
||||
"io"
|
||||
|
||||
"github.com/tendermint/crypto/bcrypt"
|
||||
"github.com/tendermint/tendermint/crypto"
|
||||
|
@ -235,7 +235,7 @@ func DecodeArmor(armorStr string) (blockType string, headers map[string]string,
|
|||
if err != nil {
|
||||
return "", nil, nil, err
|
||||
}
|
||||
data, err = ioutil.ReadAll(block.Body)
|
||||
data, err = io.ReadAll(block.Body)
|
||||
if err != nil {
|
||||
return "", nil, nil, err
|
||||
}
|
||||
|
|
|
@ -1,8 +1,9 @@
|
|||
// Package hd provides support for hierarchical deterministic wallets generation and derivation.
|
||||
//
|
||||
// The user must understand the overall concept of the BIP 32 and the BIP 44 specs:
|
||||
// https://github.com/bitcoin/bips/blob/master/bip-0044.mediawiki
|
||||
// https://github.com/bitcoin/bips/blob/master/bip-0032.mediawiki
|
||||
//
|
||||
// https://github.com/bitcoin/bips/blob/master/bip-0044.mediawiki
|
||||
// https://github.com/bitcoin/bips/blob/master/bip-0032.mediawiki
|
||||
//
|
||||
// In combination with the bip39 package in go-crypto this package provides the functionality for
|
||||
// deriving keys using a BIP 44 HD path, or, more general, by passing a BIP 32 path.
|
||||
|
|
|
@ -215,7 +215,7 @@ func DerivePrivateKeyForPath(privKeyBytes, chainCode [32]byte, path string) ([]b
|
|||
// If harden is true, the derivation is 'hardened'.
|
||||
// It returns the new private key and new chain code.
|
||||
// For more information on hardened keys see:
|
||||
// - https://github.com/bitcoin/bips/blob/master/bip-0032.mediawiki
|
||||
// - https://github.com/bitcoin/bips/blob/master/bip-0032.mediawiki
|
||||
func derivePrivateKey(privKeyBytes [32]byte, chainCode [32]byte, index uint32, harden bool) ([32]byte, [32]byte) {
|
||||
var data []byte
|
||||
|
||||
|
|
|
@ -1,19 +1,18 @@
|
|||
// Package keys provides common key management API.
|
||||
//
|
||||
//
|
||||
// The Keyring interface
|
||||
// # The Keyring interface
|
||||
//
|
||||
// The Keyring interface defines the methods that a type needs to implement to be used
|
||||
// as key storage backend. This package provides few implementations out-of-the-box.
|
||||
//
|
||||
// NewInMemory
|
||||
// # NewInMemory
|
||||
//
|
||||
// The NewInMemory constructor returns an implementation backed by an in-memory, goroutine-safe
|
||||
// map that has historically been used for testing purposes or on-the-fly key generation as the
|
||||
// generated keys are discarded when the process terminates or the type instance is garbage
|
||||
// collected.
|
||||
//
|
||||
// New
|
||||
// # New
|
||||
//
|
||||
// The New constructor returns an implementation backed by a keyring library
|
||||
// (https://github.com/99designs/keyring), whose aim is to provide a common abstraction and uniform
|
||||
|
@ -21,20 +20,21 @@
|
|||
// as well as operating system-agnostic encrypted file-based backends.
|
||||
//
|
||||
// The backends:
|
||||
// os The instance returned by this constructor uses the operating system's default
|
||||
// credentials store to handle keys storage operations securely. It should be noted
|
||||
// that the keyring keyring may be kept unlocked for the whole duration of the user
|
||||
// session.
|
||||
// file This backend more closely resembles the previous keyring storage used prior to
|
||||
// v0.38.1. It stores the keyring encrypted within the app's configuration directory.
|
||||
// This keyring will request a password each time it is accessed, which may occur
|
||||
// multiple times in a single command resulting in repeated password prompts.
|
||||
// kwallet This backend uses KDE Wallet Manager as a credentials management application:
|
||||
// https://github.com/KDE/kwallet
|
||||
// pass This backend uses the pass command line utility to store and retrieve keys:
|
||||
// https://www.passwordstore.org/
|
||||
// test This backend stores keys insecurely to disk. It does not prompt for a password to
|
||||
// be unlocked and it should be use only for testing purposes.
|
||||
// memory Same instance as returned by NewInMemory. This backend uses a transient storage. Keys
|
||||
// are discarded when the process terminates or the type instance is garbage collected.
|
||||
//
|
||||
// os The instance returned by this constructor uses the operating system's default
|
||||
// credentials store to handle keys storage operations securely. It should be noted
|
||||
// that the keyring keyring may be kept unlocked for the whole duration of the user
|
||||
// session.
|
||||
// file This backend more closely resembles the previous keyring storage used prior to
|
||||
// v0.38.1. It stores the keyring encrypted within the app's configuration directory.
|
||||
// This keyring will request a password each time it is accessed, which may occur
|
||||
// multiple times in a single command resulting in repeated password prompts.
|
||||
// kwallet This backend uses KDE Wallet Manager as a credentials management application:
|
||||
// https://github.com/KDE/kwallet
|
||||
// pass This backend uses the pass command line utility to store and retrieve keys:
|
||||
// https://www.passwordstore.org/
|
||||
// test This backend stores keys insecurely to disk. It does not prompt for a password to
|
||||
// be unlocked and it should be use only for testing purposes.
|
||||
// memory Same instance as returned by NewInMemory. This backend uses a transient storage. Keys
|
||||
// are discarded when the process terminates or the type instance is garbage collected.
|
||||
package keyring
|
||||
|
|
|
@ -158,7 +158,7 @@ func TestKeyManagementKeyRing(t *testing.T) {
|
|||
// create some random directory inside the keyring directory to check migrate ignores
|
||||
// all files other than *.info
|
||||
newPath := filepath.Join(tempDir, "random")
|
||||
require.NoError(t, os.Mkdir(newPath, 0755))
|
||||
require.NoError(t, os.Mkdir(newPath, 0o755))
|
||||
items, err := os.ReadDir(tempDir)
|
||||
require.GreaterOrEqual(t, len(items), 2)
|
||||
keyS, err = kb.List()
|
||||
|
|
|
@ -15,7 +15,7 @@ const (
|
|||
PubKeyAminoRoute = "tendermint/PubKeyMultisigThreshold"
|
||||
)
|
||||
|
||||
//nolint
|
||||
// nolint
|
||||
// Deprecated: Amino is being deprecated in the SDK. But even if you need to
|
||||
// use Amino for some reason, please use `codec/legacy.Cdc` instead.
|
||||
var AminoCdc = codec.NewLegacyAmino()
|
||||
|
|
|
@ -30,6 +30,7 @@
|
|||
// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
||||
// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
|
||||
// nolint
|
||||
package secp256k1
|
||||
|
||||
import (
|
||||
|
@ -100,7 +101,7 @@ func (BitCurve *BitCurve) IsOnCurve(x, y *big.Int) bool {
|
|||
x3.Mul(x3, x) // x³
|
||||
|
||||
x3.Add(x3, BitCurve.B) // x³+B
|
||||
x3.Mod(x3, BitCurve.P) //(x³+B)%P
|
||||
x3.Mod(x3, BitCurve.P) // (x³+B)%P
|
||||
|
||||
return x3.Cmp(y2) == 0
|
||||
}
|
||||
|
@ -222,9 +223,9 @@ func (BitCurve *BitCurve) doubleJacobian(x, y, z *big.Int) (*big.Int, *big.Int,
|
|||
c := new(big.Int).Mul(b, b) // B²
|
||||
|
||||
d := new(big.Int).Add(x, b) // X1+B
|
||||
d.Mul(d, d) //(X1+B)²
|
||||
d.Sub(d, a) //(X1+B)²-A
|
||||
d.Sub(d, c) //(X1+B)²-A-C
|
||||
d.Mul(d, d) // (X1+B)²
|
||||
d.Sub(d, a) // (X1+B)²-A
|
||||
d.Sub(d, c) // (X1+B)²-A-C
|
||||
d.Mul(d, big.NewInt(2)) // 2*((X1+B)²-A-C)
|
||||
|
||||
e := new(big.Int).Mul(big.NewInt(3), a) // 3*A
|
||||
|
|
|
@ -5,6 +5,7 @@
|
|||
//go:build !gofuzz && cgo
|
||||
// +build !gofuzz,cgo
|
||||
|
||||
// nolint
|
||||
package secp256k1
|
||||
|
||||
import (
|
||||
|
|
|
@ -13,8 +13,8 @@ import (
|
|||
|
||||
// used to reject malleable signatures
|
||||
// see:
|
||||
// - https://github.com/ethereum/go-ethereum/blob/f9401ae011ddf7f8d2d95020b7446c17f8d98dc1/crypto/signature_nocgo.go#L90-L93
|
||||
// - https://github.com/ethereum/go-ethereum/blob/f9401ae011ddf7f8d2d95020b7446c17f8d98dc1/crypto/crypto.go#L39
|
||||
// - https://github.com/ethereum/go-ethereum/blob/f9401ae011ddf7f8d2d95020b7446c17f8d98dc1/crypto/signature_nocgo.go#L90-L93
|
||||
// - https://github.com/ethereum/go-ethereum/blob/f9401ae011ddf7f8d2d95020b7446c17f8d98dc1/crypto/crypto.go#L39
|
||||
var secp256k1halfN = new(big.Int).Rsh(secp256k1.S256().N, 1)
|
||||
|
||||
// Sign creates an ECDSA signature on curve Secp256k1, using SHA256 on the msg.
|
||||
|
|
18
db/types.go
18
db/types.go
|
@ -146,16 +146,16 @@ type DBReadWriter interface {
|
|||
//
|
||||
// Typical usage:
|
||||
//
|
||||
// var itr Iterator = ...
|
||||
// defer itr.Close()
|
||||
// var itr Iterator = ...
|
||||
// defer itr.Close()
|
||||
//
|
||||
// for itr.Next() {
|
||||
// k, v := itr.Key(); itr.Value()
|
||||
// ...
|
||||
// }
|
||||
// if err := itr.Error(); err != nil {
|
||||
// ...
|
||||
// }
|
||||
// for itr.Next() {
|
||||
// k, v := itr.Key(); itr.Value()
|
||||
// ...
|
||||
// }
|
||||
// if err := itr.Error(); err != nil {
|
||||
// ...
|
||||
// }
|
||||
type Iterator interface {
|
||||
// Domain returns the start (inclusive) and end (exclusive) limits of the iterator.
|
||||
// CONTRACT: start, end readonly []byte
|
||||
|
|
|
@ -11,24 +11,23 @@ of the errors package. If it will be needed my many extensions, please consider
|
|||
registering it in the errors package. To create a new error instance use Register
|
||||
function. You must provide a unique, non zero error code and a short description, for example:
|
||||
|
||||
var ErrZeroDivision = errors.Register(9241, "zero division")
|
||||
var ErrZeroDivision = errors.Register(9241, "zero division")
|
||||
|
||||
When returning an error, you can attach to it an additional context
|
||||
information by using Wrap function, for example:
|
||||
|
||||
func safeDiv(val, div int) (int, err) {
|
||||
if div == 0 {
|
||||
return 0, errors.Wrapf(ErrZeroDivision, "cannot divide %d", val)
|
||||
func safeDiv(val, div int) (int, err) {
|
||||
if div == 0 {
|
||||
return 0, errors.Wrapf(ErrZeroDivision, "cannot divide %d", val)
|
||||
}
|
||||
return val / div, nil
|
||||
}
|
||||
return val / div, nil
|
||||
}
|
||||
|
||||
The first time an error instance is wrapped a stacktrace is attached as well.
|
||||
Stacktrace information can be printed using %+v and %v formats.
|
||||
|
||||
%s is just the error message
|
||||
%+v is the full stack trace
|
||||
%v appends a compressed [filename:line] where the error was created
|
||||
|
||||
%s is just the error message
|
||||
%+v is the full stack trace
|
||||
%v appends a compressed [filename:line] where the error was created
|
||||
*/
|
||||
package errors
|
||||
|
|
|
@ -80,7 +80,8 @@ func writeSimpleFrame(s io.Writer, f errors.Frame) {
|
|||
// %s is just the error message
|
||||
// %+v is the full stack trace
|
||||
// %v appends a compressed [filename:line] where the error
|
||||
// was created
|
||||
//
|
||||
// was created
|
||||
//
|
||||
// Inspired by https://github.com/pkg/errors/blob/v0.8.1/errors.go#L162-L176
|
||||
func (e *wrappedError) Format(s fmt.State, verb rune) {
|
||||
|
|
|
@ -4,6 +4,7 @@ package testpb
|
|||
|
||||
import (
|
||||
context "context"
|
||||
|
||||
ormlist "github.com/cosmos/cosmos-sdk/orm/model/ormlist"
|
||||
ormtable "github.com/cosmos/cosmos-sdk/orm/model/ormtable"
|
||||
ormerrors "github.com/cosmos/cosmos-sdk/orm/types/ormerrors"
|
||||
|
|
|
@ -4,6 +4,7 @@ package testpb
|
|||
|
||||
import (
|
||||
context "context"
|
||||
|
||||
ormlist "github.com/cosmos/cosmos-sdk/orm/model/ormlist"
|
||||
ormtable "github.com/cosmos/cosmos-sdk/orm/model/ormtable"
|
||||
ormerrors "github.com/cosmos/cosmos-sdk/orm/types/ormerrors"
|
||||
|
|
|
@ -10,9 +10,10 @@ import (
|
|||
// testing purposes independent of any storage layer.
|
||||
//
|
||||
// Example:
|
||||
// backend := ormtest.NewMemoryBackend()
|
||||
// ctx := ormtable.WrapContextDefault()
|
||||
// ...
|
||||
//
|
||||
// backend := ormtest.NewMemoryBackend()
|
||||
// ctx := ormtable.WrapContextDefault()
|
||||
// ...
|
||||
func NewMemoryBackend() ormtable.Backend {
|
||||
return testkv.NewSplitMemBackend()
|
||||
}
|
||||
|
|
|
@ -13,7 +13,7 @@ import (
|
|||
)
|
||||
|
||||
// Manager is an abstraction to handle the logic needed for
|
||||
// determinging when to prune old heights of the store
|
||||
// determining when to prune old heights of the store
|
||||
// based on the strategy described by the pruning options.
|
||||
type Manager struct {
|
||||
db dbm.DB
|
||||
|
|
|
@ -3,7 +3,6 @@ package config
|
|||
import (
|
||||
"bytes"
|
||||
"fmt"
|
||||
"io/ioutil"
|
||||
"os"
|
||||
"text/template"
|
||||
|
||||
|
@ -280,7 +279,7 @@ func WriteConfigFile(configFilePath string, config interface{}) {
|
|||
}
|
||||
|
||||
func mustWriteFile(filePath string, contents []byte, mode os.FileMode) {
|
||||
if err := ioutil.WriteFile(filePath, contents, mode); err != nil {
|
||||
if err := os.WriteFile(filePath, contents, mode); err != nil {
|
||||
fmt.Printf(fmt.Sprintf("failed to write file: %v", err) + "\n")
|
||||
os.Exit(1)
|
||||
}
|
||||
|
|
|
@ -23,6 +23,7 @@ The service implemented is defined in:
|
|||
https://github.com/grpc/grpc/blob/master/src/proto/grpc/reflection/v1alpha/reflection.proto.
|
||||
|
||||
To register server reflection on a gRPC server:
|
||||
|
||||
import "google.golang.org/grpc/reflection"
|
||||
|
||||
s := grpc.NewServer()
|
||||
|
@ -32,7 +33,6 @@ To register server reflection on a gRPC server:
|
|||
reflection.Register(s)
|
||||
|
||||
s.Serve(lis)
|
||||
|
||||
*/
|
||||
package gogoreflection // import "google.golang.org/grpc/reflection"
|
||||
|
||||
|
|
|
@ -25,8 +25,9 @@ func StartGRPCWeb(grpcSrv *grpc.Server, config config.Config) (*http.Server, err
|
|||
|
||||
wrappedServer := grpcweb.WrapServer(grpcSrv, options...)
|
||||
grpcWebSrv := &http.Server{
|
||||
Addr: config.GRPCWeb.Address,
|
||||
Handler: wrappedServer,
|
||||
Addr: config.GRPCWeb.Address,
|
||||
Handler: wrappedServer,
|
||||
ReadHeaderTimeout: 500 * time.Millisecond,
|
||||
}
|
||||
|
||||
errCh := make(chan error)
|
||||
|
|
|
@ -21,7 +21,7 @@ import (
|
|||
// similar to a real app. Make sure rootDir is empty before running the test,
|
||||
// in order to guarantee consistent results
|
||||
func NewApp(rootDir string, logger log.Logger) (abci.Application, error) {
|
||||
db, err := sdk.NewLevelDB("mock", filepath.Join(rootDir, "data"))
|
||||
db, err := sdk.NewLevelDB("mock", filepath.Join(rootDir, "data")) //nolint: staticcheck
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
|
|
|
@ -2,7 +2,6 @@ package mock
|
|||
|
||||
import (
|
||||
"fmt"
|
||||
"io/ioutil"
|
||||
"os"
|
||||
|
||||
"github.com/rs/zerolog"
|
||||
|
@ -23,7 +22,7 @@ func SetupApp() (abci.Application, func(), error) {
|
|||
}
|
||||
logger = logger.With("module", "mock")
|
||||
|
||||
rootDir, err := ioutil.TempDir("", "mock-sdk")
|
||||
rootDir, err := os.MkdirTemp("", "mock-sdk")
|
||||
if err != nil {
|
||||
return nil, nil, err
|
||||
}
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
//nolint
|
||||
// nolint
|
||||
package mock
|
||||
|
||||
import (
|
||||
|
@ -21,8 +21,10 @@ func (msg kvstoreTx) Reset() {}
|
|||
func (msg kvstoreTx) String() string { return "TODO" }
|
||||
func (msg kvstoreTx) ProtoMessage() {}
|
||||
|
||||
var _ sdk.Tx = kvstoreTx{}
|
||||
var _ sdk.Msg = kvstoreTx{}
|
||||
var (
|
||||
_ sdk.Tx = kvstoreTx{}
|
||||
_ sdk.Msg = kvstoreTx{}
|
||||
)
|
||||
|
||||
func NewTx(key, value string) kvstoreTx {
|
||||
bytes := fmt.Sprintf("%s=%s", key, value)
|
||||
|
|
|
@ -36,8 +36,10 @@ import (
|
|||
// interface assertion
|
||||
var _ crgtypes.Client = (*Client)(nil)
|
||||
|
||||
const defaultNodeTimeout = time.Minute
|
||||
const tmWebsocketPath = "/websocket"
|
||||
const (
|
||||
defaultNodeTimeout = time.Minute
|
||||
tmWebsocketPath = "/websocket"
|
||||
)
|
||||
|
||||
// Client implements a single network client to interact with cosmos based chains
|
||||
type Client struct {
|
||||
|
@ -99,7 +101,7 @@ func NewClient(cfg *Config) (*Client, error) {
|
|||
|
||||
// Bootstrap is gonna connect the client to the endpoints
|
||||
func (c *Client) Bootstrap() error {
|
||||
grpcConn, err := grpc.Dial(c.config.GRPCEndpoint, grpc.WithInsecure())
|
||||
grpcConn, err := grpc.Dial(c.config.GRPCEndpoint, grpc.WithInsecure()) //nolint:staticcheck
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
|
@ -256,7 +258,8 @@ func (c *Client) TxOperationsAndSignersAccountIdentifiers(signed bool, txBytes [
|
|||
}
|
||||
|
||||
// GetTx returns a transaction given its hash. For Rosetta we make a synthetic transaction for BeginBlock
|
||||
// and EndBlock to adhere to balance tracking rules.
|
||||
//
|
||||
// and EndBlock to adhere to balance tracking rules.
|
||||
func (c *Client) GetTx(ctx context.Context, hash string) (*rosettatypes.Transaction, error) {
|
||||
hashBytes, err := hex.DecodeString(hash)
|
||||
if err != nil {
|
||||
|
|
|
@ -6,6 +6,7 @@ import (
|
|||
"fmt"
|
||||
"reflect"
|
||||
|
||||
"cosmossdk.io/math"
|
||||
"github.com/btcsuite/btcd/btcec"
|
||||
rosettatypes "github.com/coinbase/rosetta-sdk-go/types"
|
||||
abci "github.com/tendermint/tendermint/abci/types"
|
||||
|
@ -30,9 +31,9 @@ import (
|
|||
// Converter is a utility that can be used to convert
|
||||
// back and forth from rosetta to sdk and tendermint types
|
||||
// IMPORTANT NOTES:
|
||||
// - IT SHOULD BE USED ONLY TO DEAL WITH THINGS
|
||||
// IN A STATELESS WAY! IT SHOULD NEVER INTERACT DIRECTLY
|
||||
// WITH TENDERMINT RPC AND COSMOS GRPC
|
||||
// - IT SHOULD BE USED ONLY TO DEAL WITH THINGS
|
||||
// IN A STATELESS WAY! IT SHOULD NEVER INTERACT DIRECTLY
|
||||
// WITH TENDERMINT RPC AND COSMOS GRPC
|
||||
//
|
||||
// - IT SHOULD RETURN cosmos rosetta gateway error types!
|
||||
type Converter interface {
|
||||
|
@ -402,7 +403,7 @@ func sdkEventToBalanceOperations(status string, event abci.Event) (operations []
|
|||
// Amounts converts []sdk.Coin to rosetta amounts
|
||||
func (c converter) Amounts(ownedCoins []sdk.Coin, availableCoins sdk.Coins) []*rosettatypes.Amount {
|
||||
amounts := make([]*rosettatypes.Amount, len(availableCoins))
|
||||
ownedCoinsMap := make(map[string]sdk.Int, len(availableCoins))
|
||||
ownedCoinsMap := make(map[string]math.Int, len(availableCoins))
|
||||
|
||||
for _, ownedCoin := range ownedCoins {
|
||||
ownedCoinsMap[ownedCoin.Denom] = ownedCoin.Amount
|
||||
|
@ -557,7 +558,7 @@ func (c converter) Peers(peers []tmcoretypes.Peer) []*rosettatypes.Peer {
|
|||
|
||||
for i, peer := range peers {
|
||||
converted[i] = &rosettatypes.Peer{
|
||||
PeerID: string(peer.NodeInfo.Moniker),
|
||||
PeerID: peer.NodeInfo.Moniker,
|
||||
Metadata: map[string]interface{}{
|
||||
"addr": peer.NodeInfo.ListenAddr,
|
||||
},
|
||||
|
|
|
@ -41,7 +41,7 @@ type Server struct {
|
|||
}
|
||||
|
||||
func (h Server) Start() error {
|
||||
return http.ListenAndServe(h.addr, h.h)
|
||||
return http.ListenAndServe(h.addr, h.h) //nolint:gosec
|
||||
}
|
||||
|
||||
func NewServer(settings Settings) (Server, error) {
|
||||
|
|
|
@ -27,7 +27,6 @@ import (
|
|||
"github.com/cosmos/cosmos-sdk/codec"
|
||||
pruningtypes "github.com/cosmos/cosmos-sdk/pruning/types"
|
||||
"github.com/cosmos/cosmos-sdk/server/api"
|
||||
"github.com/cosmos/cosmos-sdk/server/config"
|
||||
serverconfig "github.com/cosmos/cosmos-sdk/server/config"
|
||||
servergrpc "github.com/cosmos/cosmos-sdk/server/grpc"
|
||||
"github.com/cosmos/cosmos-sdk/server/rosetta"
|
||||
|
@ -514,7 +513,7 @@ func startInProcess(ctx *Context, clientCtx client.Context, appCreator types.App
|
|||
return WaitForQuitSignals()
|
||||
}
|
||||
|
||||
func startTelemetry(cfg config.Config) (*telemetry.Metrics, error) {
|
||||
func startTelemetry(cfg serverconfig.Config) (*telemetry.Metrics, error) {
|
||||
if !cfg.Telemetry.Enabled {
|
||||
return nil, nil
|
||||
}
|
||||
|
|
|
@ -96,7 +96,7 @@ func bindFlags(basename string, cmd *cobra.Command, v *viper.Viper) (err error)
|
|||
}
|
||||
})
|
||||
|
||||
return
|
||||
return nil
|
||||
}
|
||||
|
||||
// InterceptConfigsPreRunHandler performs a pre-run function for the root daemon
|
||||
|
|
|
@ -470,7 +470,6 @@ func (app *SimApp) setAnteHandler(txConfig client.TxConfig) {
|
|||
SigGasConsumer: ante.DefaultSigVerificationGasConsumer,
|
||||
},
|
||||
)
|
||||
|
||||
if err != nil {
|
||||
panic(err)
|
||||
}
|
||||
|
|
|
@ -47,7 +47,8 @@ func (app *SimApp) ExportAppStateAndValidators(
|
|||
|
||||
// prepare for fresh start at zero height
|
||||
// NOTE zero height genesis is a temporary feature which will be deprecated
|
||||
// in favour of export at a block height
|
||||
//
|
||||
// in favour of export at a block height
|
||||
func (app *SimApp) prepForZeroHeightGenesis(ctx sdk.Context, jailAllowedAddrs []string) {
|
||||
applyAllowedAddrs := false
|
||||
|
||||
|
|
|
@ -6,7 +6,6 @@ import (
|
|||
"bufio"
|
||||
"encoding/json"
|
||||
"fmt"
|
||||
"io/ioutil"
|
||||
"net"
|
||||
"os"
|
||||
"path/filepath"
|
||||
|
@ -466,7 +465,7 @@ func calculateIP(ip string, i int) (string, error) {
|
|||
}
|
||||
|
||||
func writeFile(name string, dir string, contents []byte) error {
|
||||
writePath := filepath.Join(dir)
|
||||
writePath := filepath.Join(dir) //nolint:gocritic
|
||||
file := filepath.Join(writePath, name)
|
||||
|
||||
err := tmos.EnsureDir(writePath, 0o755)
|
||||
|
@ -474,7 +473,7 @@ func writeFile(name string, dir string, contents []byte) error {
|
|||
return err
|
||||
}
|
||||
|
||||
err = ioutil.WriteFile(file, contents, 0o644) // nolint: gosec
|
||||
err = os.WriteFile(file, contents, 0o644) // nolint: gosec
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
|
|
|
@ -10,6 +10,7 @@ import (
|
|||
"testing"
|
||||
"time"
|
||||
|
||||
"cosmossdk.io/math"
|
||||
"github.com/stretchr/testify/require"
|
||||
abci "github.com/tendermint/tendermint/abci/types"
|
||||
tmjson "github.com/tendermint/tendermint/libs/json"
|
||||
|
@ -322,7 +323,7 @@ func createIncrementalAccounts(accNum int) []sdk.AccAddress {
|
|||
}
|
||||
|
||||
// AddTestAddrsFromPubKeys adds the addresses into the SimApp providing only the public keys.
|
||||
func AddTestAddrsFromPubKeys(app *SimApp, ctx sdk.Context, pubKeys []cryptotypes.PubKey, accAmt sdk.Int) {
|
||||
func AddTestAddrsFromPubKeys(app *SimApp, ctx sdk.Context, pubKeys []cryptotypes.PubKey, accAmt math.Int) {
|
||||
initCoins := sdk.NewCoins(sdk.NewCoin(app.StakingKeeper.BondDenom(ctx), accAmt))
|
||||
|
||||
for _, pk := range pubKeys {
|
||||
|
@ -332,17 +333,17 @@ func AddTestAddrsFromPubKeys(app *SimApp, ctx sdk.Context, pubKeys []cryptotypes
|
|||
|
||||
// AddTestAddrs constructs and returns accNum amount of accounts with an
|
||||
// initial balance of accAmt in random order
|
||||
func AddTestAddrs(app *SimApp, ctx sdk.Context, accNum int, accAmt sdk.Int) []sdk.AccAddress {
|
||||
func AddTestAddrs(app *SimApp, ctx sdk.Context, accNum int, accAmt math.Int) []sdk.AccAddress {
|
||||
return addTestAddrs(app, ctx, accNum, accAmt, createRandomAccounts)
|
||||
}
|
||||
|
||||
// AddTestAddrsIncremental constructs and returns accNum amount of accounts with an
|
||||
// initial balance of accAmt in random order
|
||||
func AddTestAddrsIncremental(app *SimApp, ctx sdk.Context, accNum int, accAmt sdk.Int) []sdk.AccAddress {
|
||||
func AddTestAddrsIncremental(app *SimApp, ctx sdk.Context, accNum int, accAmt math.Int) []sdk.AccAddress {
|
||||
return addTestAddrs(app, ctx, accNum, accAmt, createIncrementalAccounts)
|
||||
}
|
||||
|
||||
func addTestAddrs(app *SimApp, ctx sdk.Context, accNum int, accAmt sdk.Int, strategy GenerateAccountStrategy) []sdk.AccAddress {
|
||||
func addTestAddrs(app *SimApp, ctx sdk.Context, accNum int, accAmt math.Int, strategy GenerateAccountStrategy) []sdk.AccAddress {
|
||||
testAddrs := strategy(accNum)
|
||||
|
||||
initCoins := sdk.NewCoins(sdk.NewCoin(app.StakingKeeper.BondDenom(ctx), accAmt))
|
||||
|
|
|
@ -23,12 +23,12 @@ import (
|
|||
// Although the ABCI interface (and this manager) passes chunks as byte slices, the internal
|
||||
// snapshot/restore APIs use IO streams (i.e. chan io.ReadCloser), for two reasons:
|
||||
//
|
||||
// 1) In the future, ABCI should support streaming. Consider e.g. InitChain during chain
|
||||
// upgrades, which currently passes the entire chain state as an in-memory byte slice.
|
||||
// https://github.com/tendermint/tendermint/issues/5184
|
||||
// 1. In the future, ABCI should support streaming. Consider e.g. InitChain during chain
|
||||
// upgrades, which currently passes the entire chain state as an in-memory byte slice.
|
||||
// https://github.com/tendermint/tendermint/issues/5184
|
||||
//
|
||||
// 2) io.ReadCloser streams automatically propagate IO errors, and can pass arbitrary
|
||||
// errors via io.Pipe.CloseWithError().
|
||||
// 2. io.ReadCloser streams automatically propagate IO errors, and can pass arbitrary
|
||||
// errors via io.Pipe.CloseWithError().
|
||||
type Manager struct {
|
||||
extensions map[string]types.ExtensionSnapshotter
|
||||
// store is the snapshot store where all completed snapshots are persisted.
|
||||
|
|
|
@ -4,7 +4,7 @@ import (
|
|||
protoio "github.com/gogo/protobuf/io"
|
||||
)
|
||||
|
||||
// WriteExtensionItem writes an item payload for current extention snapshotter.
|
||||
// WriteExtensionItem writes an item payload for current extension snapshotter.
|
||||
func WriteExtensionItem(protoWriter protoio.Writer, item []byte) error {
|
||||
return protoWriter.WriteMsg(&SnapshotItem{
|
||||
Item: &SnapshotItem_ExtensionPayload{
|
||||
|
|
|
@ -1,9 +1,10 @@
|
|||
package cachekv
|
||||
|
||||
import (
|
||||
db "github.com/tendermint/tm-db"
|
||||
"strconv"
|
||||
"testing"
|
||||
|
||||
db "github.com/tendermint/tm-db"
|
||||
)
|
||||
|
||||
func BenchmarkLargeUnsortedMisses(b *testing.B) {
|
||||
|
|
|
@ -423,7 +423,7 @@ var _ types.Iterator = (*iavlIterator)(nil)
|
|||
// newIAVLIterator will create a new iavlIterator.
|
||||
// CONTRACT: Caller must release the iavlIterator, as each one creates a new
|
||||
// goroutine.
|
||||
func newIAVLIterator(tree *iavl.ImmutableTree, start, end []byte, ascending bool) *iavlIterator {
|
||||
func newIAVLIterator(tree *iavl.ImmutableTree, start, end []byte, ascending bool) *iavlIterator { //nolint:unused
|
||||
iterator, err := tree.Iterator(start, end, ascending)
|
||||
if err != nil {
|
||||
panic(err)
|
||||
|
|
|
@ -81,7 +81,6 @@ func TestLoadStreamingServices(t *testing.T) {
|
|||
require.Equal(t, tc.activeStreamersLen, len(activeStreamers))
|
||||
})
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
type streamingAppOptions struct {
|
||||
|
|
|
@ -3,7 +3,6 @@ package file
|
|||
import (
|
||||
"errors"
|
||||
"fmt"
|
||||
"io/ioutil"
|
||||
"os"
|
||||
"path"
|
||||
"path/filepath"
|
||||
|
@ -272,7 +271,7 @@ func (fss *StreamingService) Close() error {
|
|||
// to dir. It returns nil if dir is writable.
|
||||
func isDirWriteable(dir string) error {
|
||||
f := path.Join(dir, ".touch")
|
||||
if err := ioutil.WriteFile(f, []byte(""), 0o600); err != nil {
|
||||
if err := os.WriteFile(f, []byte(""), 0o600); err != nil {
|
||||
return err
|
||||
}
|
||||
return os.Remove(f)
|
||||
|
|
|
@ -3,7 +3,6 @@ package file
|
|||
import (
|
||||
"encoding/binary"
|
||||
"fmt"
|
||||
"io/ioutil"
|
||||
"os"
|
||||
"path/filepath"
|
||||
"sync"
|
||||
|
@ -369,7 +368,7 @@ func testListenEndBlock(t *testing.T) {
|
|||
|
||||
func readInFile(name string) ([]byte, error) {
|
||||
path := filepath.Join(testDir, name)
|
||||
return ioutil.ReadFile(path)
|
||||
return os.ReadFile(path)
|
||||
}
|
||||
|
||||
// segmentBytes returns all of the protobuf messages contained in the byte array as an array of byte arrays
|
||||
|
|
|
@ -4,10 +4,10 @@ go 1.18
|
|||
|
||||
require (
|
||||
github.com/confio/ics23/go v0.7.0
|
||||
github.com/cosmos/cosmos-sdk v0.46.0-rc3
|
||||
github.com/cosmos/iavl v0.19.0
|
||||
github.com/cosmos/cosmos-sdk v0.46.1
|
||||
github.com/cosmos/iavl v0.19.1
|
||||
github.com/lazyledger/smt v0.2.1-0.20210709230900-03ea40719554
|
||||
github.com/tendermint/tendermint v0.34.20
|
||||
github.com/tendermint/tendermint v0.34.21
|
||||
github.com/tendermint/tm-db v0.6.7
|
||||
)
|
||||
|
||||
|
@ -25,15 +25,15 @@ require (
|
|||
github.com/golang/snappy v0.0.4 // indirect
|
||||
github.com/google/btree v1.0.1 // indirect
|
||||
github.com/jmhodges/levigo v1.0.0 // indirect
|
||||
github.com/klauspost/compress v1.15.1 // indirect
|
||||
github.com/klauspost/compress v1.15.9 // indirect
|
||||
github.com/petermattis/goid v0.0.0-20180202154549-b0b1615b78e5 // indirect
|
||||
github.com/pkg/errors v0.9.1 // indirect
|
||||
github.com/sasha-s/go-deadlock v0.2.1-0.20190427202633-1595213edefa // indirect
|
||||
github.com/syndtr/goleveldb v1.0.1-0.20210819022825-2ae1ddf74ef7 // indirect
|
||||
go.etcd.io/bbolt v1.3.6 // indirect
|
||||
golang.org/x/crypto v0.0.0-20220525230936-793ad666bf5e // indirect
|
||||
golang.org/x/net v0.0.0-20220617184016-355a448f1bc9 // indirect
|
||||
golang.org/x/sys v0.0.0-20220615213510-4f61da869c0c // indirect
|
||||
golang.org/x/net v0.0.0-20220726230323-06994584191e // indirect
|
||||
golang.org/x/sys v0.0.0-20220727055044-e65921a090b8 // indirect
|
||||
google.golang.org/protobuf v1.28.0 // indirect
|
||||
)
|
||||
|
||||
|
|
File diff suppressed because it is too large
Load Diff
|
@ -296,11 +296,11 @@ func NewStore(db dbm.DBConnection, opts StoreConfig) (ret *Store, err error) {
|
|||
}
|
||||
reg.reserved = make([]string, len(opts.reserved))
|
||||
copy(reg.reserved, opts.reserved)
|
||||
} else {
|
||||
if !reg.equal(opts.StoreSchema) {
|
||||
err = errors.New("loaded schema does not match configured schema")
|
||||
return
|
||||
}
|
||||
} else if !reg.equal(opts.StoreSchema) {
|
||||
|
||||
err = errors.New("loaded schema does not match configured schema")
|
||||
return
|
||||
|
||||
}
|
||||
// Apply migrations, then clear old schema and write the new one
|
||||
for _, upgrades := range opts.Upgrades {
|
||||
|
@ -336,7 +336,7 @@ func NewStore(db dbm.DBConnection, opts StoreConfig) (ret *Store, err error) {
|
|||
}
|
||||
}
|
||||
ret.schema = reg.StoreSchema
|
||||
return
|
||||
return ret, nil
|
||||
}
|
||||
|
||||
func (s *Store) Close() error {
|
||||
|
@ -672,7 +672,7 @@ func (s *Store) LastCommitID() types.CommitID {
|
|||
|
||||
// SetInitialVersion implements CommitMultiStore.
|
||||
func (rs *Store) SetInitialVersion(version uint64) error {
|
||||
rs.InitialVersion = uint64(version)
|
||||
rs.InitialVersion = version
|
||||
return nil
|
||||
}
|
||||
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
//nolint:unused
|
||||
package multi
|
||||
|
||||
import (
|
||||
|
@ -41,7 +42,7 @@ func (dbSaveVersionFails) SaveVersion(uint64) error { return errors.New("dbSaveV
|
|||
func (db dbRevertFails) Revert() error {
|
||||
fail := false
|
||||
if len(db.failOn) > 0 {
|
||||
fail, db.failOn = db.failOn[0], db.failOn[1:]
|
||||
fail, db.failOn = db.failOn[0], db.failOn[1:] //nolint:staticcheck
|
||||
}
|
||||
if fail {
|
||||
return errors.New("dbRevertFails")
|
||||
|
|
|
@ -140,7 +140,7 @@ func (store *Store) getView(version int64) (ret *viewStore, err error) {
|
|||
substoreCache: map[string]*viewSubstore{},
|
||||
schema: pr.StoreSchema,
|
||||
}
|
||||
return
|
||||
return ret, nil
|
||||
}
|
||||
|
||||
func (vs *viewStore) GetKVStore(skey types.StoreKey) types.KVStore {
|
||||
|
|
|
@ -31,7 +31,7 @@ func createIcs23Proof(store *Store, key []byte) (*ics23.CommitmentProof, error)
|
|||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
ret.Proof = &ics23.CommitmentProof_Exist{&ics23.ExistenceProof{
|
||||
ret.Proof = &ics23.CommitmentProof_Exist{Exist: &ics23.ExistenceProof{
|
||||
Key: path[:],
|
||||
Value: value,
|
||||
Leaf: ics23.SmtSpec.LeafSpec,
|
||||
|
@ -42,7 +42,7 @@ func createIcs23Proof(store *Store, key []byte) (*ics23.CommitmentProof, error)
|
|||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
ret.Proof = &ics23.CommitmentProof_Nonexist{nonexist}
|
||||
ret.Proof = &ics23.CommitmentProof_Nonexist{Nonexist: nonexist}
|
||||
}
|
||||
return ret, nil
|
||||
}
|
||||
|
@ -104,7 +104,7 @@ func convertInnerOps(path []byte, sideNodes [][]byte) []*ics23.InnerOp {
|
|||
Hash: ics23.HashOp_SHA256,
|
||||
Prefix: []byte{1},
|
||||
}
|
||||
if getBitAtFromMSB(path[:], depth-1-i) == 1 {
|
||||
if getBitAtFromMSB(path, depth-1-i) == 1 {
|
||||
// right child is on path
|
||||
op.Prefix = append(op.Prefix, sideNodes[i]...)
|
||||
} else {
|
||||
|
|
|
@ -137,7 +137,7 @@ func (ms dbMapStore) Get(key []byte) ([]byte, error) {
|
|||
return nil, err
|
||||
}
|
||||
if val == nil {
|
||||
return nil, &smt.InvalidKeyError{key}
|
||||
return nil, &smt.InvalidKeyError{Key: key}
|
||||
}
|
||||
return val, nil
|
||||
}
|
||||
|
|
|
@ -15,6 +15,7 @@ import (
|
|||
"testing"
|
||||
"time"
|
||||
|
||||
"cosmossdk.io/math"
|
||||
"github.com/rs/zerolog"
|
||||
"github.com/spf13/cobra"
|
||||
tmrand "github.com/tendermint/tendermint/libs/rand"
|
||||
|
@ -83,9 +84,9 @@ type Config struct {
|
|||
Mnemonics []string // custom user-provided validator operator mnemonics
|
||||
BondDenom string // the staking bond denomination
|
||||
MinGasPrices string // the minimum gas prices each validator will accept
|
||||
AccountTokens sdk.Int // the amount of unique validator tokens (e.g. 1000node0)
|
||||
StakingTokens sdk.Int // the amount of tokens each validator has available to stake
|
||||
BondedTokens sdk.Int // the amount of tokens each validator stakes
|
||||
AccountTokens math.Int // the amount of unique validator tokens (e.g. 1000node0)
|
||||
StakingTokens math.Int // the amount of tokens each validator has available to stake
|
||||
BondedTokens math.Int // the amount of tokens each validator stakes
|
||||
PruningStrategy string // the pruning strategy each validator will have
|
||||
EnableTMLogging bool // enable Tendermint logging to STDOUT
|
||||
CleanupDir bool // remove base temporary directory during cleanup
|
||||
|
|
|
@ -2,7 +2,7 @@ package network
|
|||
|
||||
import (
|
||||
"encoding/json"
|
||||
"io/ioutil"
|
||||
"os"
|
||||
"path/filepath"
|
||||
"time"
|
||||
|
||||
|
@ -193,7 +193,7 @@ func initGenFiles(cfg Config, genAccounts []authtypes.GenesisAccount, genBalance
|
|||
}
|
||||
|
||||
func writeFile(name string, dir string, contents []byte) error {
|
||||
writePath := filepath.Join(dir)
|
||||
writePath := filepath.Join(dir) //nolint:gocritic
|
||||
file := filepath.Join(writePath, name)
|
||||
|
||||
err := tmos.EnsureDir(writePath, 0o755)
|
||||
|
@ -201,7 +201,7 @@ func writeFile(name string, dir string, contents []byte) error {
|
|||
return err
|
||||
}
|
||||
|
||||
err = ioutil.WriteFile(file, contents, 0o644) // nolint: gosec
|
||||
err = os.WriteFile(file, contents, 0o644) // nolint: gosec
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
|
|
|
@ -205,7 +205,7 @@ func (aa AccAddress) Equals(aa2 Address) bool {
|
|||
|
||||
// Returns boolean for whether an AccAddress is empty
|
||||
func (aa AccAddress) Empty() bool {
|
||||
return aa == nil || len(aa) == 0
|
||||
return len(aa) == 0
|
||||
}
|
||||
|
||||
// Marshal returns the raw address bytes. It is needed for protobuf
|
||||
|
@ -353,7 +353,7 @@ func (va ValAddress) Equals(va2 Address) bool {
|
|||
|
||||
// Returns boolean for whether an AccAddress is empty
|
||||
func (va ValAddress) Empty() bool {
|
||||
return va == nil || len(va) == 0
|
||||
return len(va) == 0
|
||||
}
|
||||
|
||||
// Marshal returns the raw address bytes. It is needed for protobuf
|
||||
|
@ -508,7 +508,7 @@ func (ca ConsAddress) Equals(ca2 Address) bool {
|
|||
|
||||
// Returns boolean for whether an ConsAddress is empty
|
||||
func (ca ConsAddress) Empty() bool {
|
||||
return ca == nil || len(ca) == 0
|
||||
return len(ca) == 0
|
||||
}
|
||||
|
||||
// Marshal returns the raw address bytes. It is needed for protobuf
|
||||
|
|
|
@ -411,7 +411,7 @@ func (coins Coins) SafeSub(coinsB ...Coin) (Coins, bool) {
|
|||
}
|
||||
|
||||
// MulInt performs the scalar multiplication of coins with a `multiplier`
|
||||
// All coins are multipled by x
|
||||
// All coins are multiplied by x
|
||||
// e.g.
|
||||
// {2A, 3B} * 2 = {4A, 6B}
|
||||
// {2A} * 0 panics
|
||||
|
@ -480,10 +480,11 @@ func (coins Coins) SafeQuoInt(x Int) (Coins, bool) {
|
|||
// of AmountOf(D) of the inputs. Note that the result might be not
|
||||
// be equal to either input. For any valid Coins a, b, and c, the
|
||||
// following are always true:
|
||||
// a.IsAllLTE(a.Max(b))
|
||||
// b.IsAllLTE(a.Max(b))
|
||||
// a.IsAllLTE(c) && b.IsAllLTE(c) == a.Max(b).IsAllLTE(c)
|
||||
// a.Add(b...).IsEqual(a.Min(b).Add(a.Max(b)...))
|
||||
//
|
||||
// a.IsAllLTE(a.Max(b))
|
||||
// b.IsAllLTE(a.Max(b))
|
||||
// a.IsAllLTE(c) && b.IsAllLTE(c) == a.Max(b).IsAllLTE(c)
|
||||
// a.Add(b...).IsEqual(a.Min(b).Add(a.Max(b)...))
|
||||
//
|
||||
// E.g.
|
||||
// {1A, 3B, 2C}.Max({4A, 2B, 2C} == {4A, 3B, 2C})
|
||||
|
@ -525,10 +526,11 @@ func (coins Coins) Max(coinsB Coins) Coins {
|
|||
// of AmountOf(D) of the inputs. Note that the result might be not
|
||||
// be equal to either input. For any valid Coins a, b, and c, the
|
||||
// following are always true:
|
||||
// a.Min(b).IsAllLTE(a)
|
||||
// a.Min(b).IsAllLTE(b)
|
||||
// c.IsAllLTE(a) && c.IsAllLTE(b) == c.IsAllLTE(a.Min(b))
|
||||
// a.Add(b...).IsEqual(a.Min(b).Add(a.Max(b)...))
|
||||
//
|
||||
// a.Min(b).IsAllLTE(a)
|
||||
// a.Min(b).IsAllLTE(b)
|
||||
// c.IsAllLTE(a) && c.IsAllLTE(b) == c.IsAllLTE(a.Min(b))
|
||||
// a.Add(b...).IsEqual(a.Min(b).Add(a.Max(b)...))
|
||||
//
|
||||
// E.g.
|
||||
// {1A, 3B, 2C}.Min({4A, 2B, 2C} == {1A, 2B, 2C})
|
||||
|
|
|
@ -91,7 +91,8 @@ func (config *Config) SetBech32PrefixForAccount(addressPrefix, pubKeyPrefix stri
|
|||
}
|
||||
|
||||
// SetBech32PrefixForValidator builds the Config with Bech32 addressPrefix and publKeyPrefix for validators
|
||||
// and returns the config instance
|
||||
//
|
||||
// and returns the config instance
|
||||
func (config *Config) SetBech32PrefixForValidator(addressPrefix, pubKeyPrefix string) {
|
||||
config.assertNotSealed()
|
||||
config.bech32AddressPrefix["validator_addr"] = addressPrefix
|
||||
|
|
|
@ -130,12 +130,15 @@ func NewDecFromIntWithPrec(i Int, prec int64) Dec {
|
|||
|
||||
// create a decimal from an input decimal string.
|
||||
// valid must come in the form:
|
||||
// (-) whole integers (.) decimal integers
|
||||
//
|
||||
// (-) whole integers (.) decimal integers
|
||||
//
|
||||
// examples of acceptable input include:
|
||||
// -123.456
|
||||
// 456.7890
|
||||
// 345
|
||||
// -456789
|
||||
//
|
||||
// -123.456
|
||||
// 456.7890
|
||||
// 345
|
||||
// -456789
|
||||
//
|
||||
// NOTE - An error will return if more decimal places
|
||||
// are provided in the string than the constant Precision.
|
||||
|
|
|
@ -7,7 +7,9 @@ import (
|
|||
// Type Aliases to errors module
|
||||
//
|
||||
// Deprecated: functionality of this package has been moved to it's own module:
|
||||
// cosmossdk.io/errors
|
||||
//
|
||||
// cosmossdk.io/errors
|
||||
//
|
||||
// Please use the above module instead of this package.
|
||||
var (
|
||||
SuccessABCICode = errorsmod.SuccessABCICode
|
||||
|
|
|
@ -3,12 +3,13 @@ package types
|
|||
import (
|
||||
"encoding/json"
|
||||
"fmt"
|
||||
"golang.org/x/exp/maps"
|
||||
"golang.org/x/exp/slices"
|
||||
"reflect"
|
||||
"sort"
|
||||
"strings"
|
||||
|
||||
"golang.org/x/exp/maps"
|
||||
"golang.org/x/exp/slices"
|
||||
|
||||
"github.com/gogo/protobuf/jsonpb"
|
||||
proto "github.com/gogo/protobuf/proto"
|
||||
abci "github.com/tendermint/tendermint/abci/types"
|
||||
|
|
|
@ -43,21 +43,22 @@ func ChainAnteDecorators(chain ...AnteDecorator) AnteHandler {
|
|||
|
||||
// Terminator AnteDecorator will get added to the chain to simplify decorator code
|
||||
// Don't need to check if next == nil further up the chain
|
||||
// ______
|
||||
// <((((((\\\
|
||||
// / . }\
|
||||
// ;--..--._|}
|
||||
// (\ '--/\--' )
|
||||
// \\ | '-' :'|
|
||||
// \\ . -==- .-|
|
||||
// \\ \.__.' \--._
|
||||
// [\\ __.--| // _/'--.
|
||||
// \ \\ .'-._ ('-----'/ __/ \
|
||||
// \ \\ / __>| | '--. |
|
||||
// \ \\ | \ | / / /
|
||||
// \ '\ / \ | | _/ /
|
||||
// \ \ \ | | / /
|
||||
// snd \ \ \ /
|
||||
//
|
||||
// ______
|
||||
// <((((((\\\
|
||||
// / . }\
|
||||
// ;--..--._|}
|
||||
// (\ '--/\--' )
|
||||
// \\ | '-' :'|
|
||||
// \\ . -==- .-|
|
||||
// \\ \.__.' \--._
|
||||
// [\\ __.--| // _/'--.
|
||||
// \ \\ .'-._ ('-----'/ __/ \
|
||||
// \ \\ / __>| | '--. |
|
||||
// \ \\ | \ | / / /
|
||||
// \ '\ / \ | | _/ /
|
||||
// \ \ \ | | / /
|
||||
// snd \ \ \ /
|
||||
type Terminator struct{}
|
||||
|
||||
// Simply return provided Context and nil error
|
||||
|
|
|
@ -1,10 +1,10 @@
|
|||
/*
|
||||
Package module contains application module patterns and associated "manager" functionality.
|
||||
The module pattern has been broken down by:
|
||||
- independent module functionality (AppModuleBasic)
|
||||
- inter-dependent module genesis functionality (AppModuleGenesis)
|
||||
- inter-dependent module simulation functionality (AppModuleSimulation)
|
||||
- inter-dependent module full functionality (AppModule)
|
||||
- independent module functionality (AppModuleBasic)
|
||||
- inter-dependent module genesis functionality (AppModuleGenesis)
|
||||
- inter-dependent module simulation functionality (AppModuleSimulation)
|
||||
- inter-dependent module full functionality (AppModule)
|
||||
|
||||
inter-dependent module functionality is module functionality which somehow
|
||||
depends on other modules, typically through the module keeper. Many of the
|
||||
|
@ -385,19 +385,21 @@ type VersionMap map[string]uint64
|
|||
// returning RunMigrations should be enough:
|
||||
//
|
||||
// Example:
|
||||
// cfg := module.NewConfigurator(...)
|
||||
// app.UpgradeKeeper.SetUpgradeHandler("my-plan", func(ctx sdk.Context, plan upgradetypes.Plan, fromVM module.VersionMap) (module.VersionMap, error) {
|
||||
// return app.mm.RunMigrations(ctx, cfg, fromVM)
|
||||
// })
|
||||
//
|
||||
// cfg := module.NewConfigurator(...)
|
||||
// app.UpgradeKeeper.SetUpgradeHandler("my-plan", func(ctx sdk.Context, plan upgradetypes.Plan, fromVM module.VersionMap) (module.VersionMap, error) {
|
||||
// return app.mm.RunMigrations(ctx, cfg, fromVM)
|
||||
// })
|
||||
//
|
||||
// Internally, RunMigrations will perform the following steps:
|
||||
// - create an `updatedVM` VersionMap of module with their latest ConsensusVersion
|
||||
// - make a diff of `fromVM` and `udpatedVM`, and for each module:
|
||||
// - if the module's `fromVM` version is less than its `updatedVM` version,
|
||||
// then run in-place store migrations for that module between those versions.
|
||||
// - if the module does not exist in the `fromVM` (which means that it's a new module,
|
||||
// because it was not in the previous x/upgrade's store), then run
|
||||
// `InitGenesis` on that module.
|
||||
// - if the module's `fromVM` version is less than its `updatedVM` version,
|
||||
// then run in-place store migrations for that module between those versions.
|
||||
// - if the module does not exist in the `fromVM` (which means that it's a new module,
|
||||
// because it was not in the previous x/upgrade's store), then run
|
||||
// `InitGenesis` on that module.
|
||||
//
|
||||
// - return the `updatedVM` to be persisted in the x/upgrade's store.
|
||||
//
|
||||
// Migrations are run in an order defined by `Manager.OrderMigrations` or (if not set) defined by
|
||||
|
@ -410,18 +412,19 @@ type VersionMap map[string]uint64
|
|||
// running anything for foo.
|
||||
//
|
||||
// Example:
|
||||
// cfg := module.NewConfigurator(...)
|
||||
// app.UpgradeKeeper.SetUpgradeHandler("my-plan", func(ctx sdk.Context, plan upgradetypes.Plan, fromVM module.VersionMap) (module.VersionMap, error) {
|
||||
// // Assume "foo" is a new module.
|
||||
// // `fromVM` is fetched from existing x/upgrade store. Since foo didn't exist
|
||||
// // before this upgrade, `v, exists := fromVM["foo"]; exists == false`, and RunMigration will by default
|
||||
// // run InitGenesis on foo.
|
||||
// // To skip running foo's InitGenesis, you need set `fromVM`'s foo to its latest
|
||||
// // consensus version:
|
||||
// fromVM["foo"] = foo.AppModule{}.ConsensusVersion()
|
||||
//
|
||||
// return app.mm.RunMigrations(ctx, cfg, fromVM)
|
||||
// })
|
||||
// cfg := module.NewConfigurator(...)
|
||||
// app.UpgradeKeeper.SetUpgradeHandler("my-plan", func(ctx sdk.Context, plan upgradetypes.Plan, fromVM module.VersionMap) (module.VersionMap, error) {
|
||||
// // Assume "foo" is a new module.
|
||||
// // `fromVM` is fetched from existing x/upgrade store. Since foo didn't exist
|
||||
// // before this upgrade, `v, exists := fromVM["foo"]; exists == false`, and RunMigration will by default
|
||||
// // run InitGenesis on foo.
|
||||
// // To skip running foo's InitGenesis, you need set `fromVM`'s foo to its latest
|
||||
// // consensus version:
|
||||
// fromVM["foo"] = foo.AppModule{}.ConsensusVersion()
|
||||
//
|
||||
// return app.mm.RunMigrations(ctx, cfg, fromVM)
|
||||
// })
|
||||
//
|
||||
// Please also refer to docs/core/upgrade.md for more information.
|
||||
func (m Manager) RunMigrations(ctx sdk.Context, cfg Configurator, fromVM VersionMap) (VersionMap, error) {
|
||||
|
|
|
@ -4,7 +4,7 @@ import (
|
|||
"bytes"
|
||||
"compress/gzip"
|
||||
"fmt"
|
||||
"io/ioutil"
|
||||
"io"
|
||||
"reflect"
|
||||
|
||||
"github.com/gogo/protobuf/proto"
|
||||
|
@ -64,7 +64,7 @@ func unzip(b []byte) []byte {
|
|||
panic(err)
|
||||
}
|
||||
|
||||
unzipped, err := ioutil.ReadAll(r)
|
||||
unzipped, err := io.ReadAll(r)
|
||||
if err != nil {
|
||||
panic(err)
|
||||
}
|
||||
|
|
|
@ -5,6 +5,7 @@ import (
|
|||
"fmt"
|
||||
"testing"
|
||||
|
||||
"cosmossdk.io/math"
|
||||
"github.com/stretchr/testify/suite"
|
||||
tmproto "github.com/tendermint/tendermint/proto/tendermint/types"
|
||||
dbm "github.com/tendermint/tm-db"
|
||||
|
@ -319,7 +320,7 @@ func ExamplePaginate(t *testing.T) {
|
|||
balancesStore := prefix.NewStore(authStore, types.BalancesPrefix)
|
||||
accountStore := prefix.NewStore(balancesStore, address.MustLengthPrefix(addr1))
|
||||
pageRes, err := query.Paginate(accountStore, request.Pagination, func(key []byte, value []byte) error {
|
||||
var amount sdk.Int
|
||||
var amount math.Int
|
||||
err := amount.Unmarshal(value)
|
||||
if err != nil {
|
||||
return err
|
||||
|
|
|
@ -7,6 +7,7 @@ import (
|
|||
"time"
|
||||
"unsafe"
|
||||
|
||||
"cosmossdk.io/math"
|
||||
sdk "github.com/cosmos/cosmos-sdk/types"
|
||||
)
|
||||
|
||||
|
@ -40,9 +41,9 @@ func RandStringOfLength(r *rand.Rand, n int) string {
|
|||
}
|
||||
|
||||
// RandPositiveInt get a rand positive sdk.Int
|
||||
func RandPositiveInt(r *rand.Rand, max sdk.Int) (sdk.Int, error) {
|
||||
func RandPositiveInt(r *rand.Rand, max math.Int) (math.Int, error) {
|
||||
if !max.GTE(sdk.OneInt()) {
|
||||
return sdk.Int{}, errors.New("max too small")
|
||||
return math.Int{}, errors.New("max too small")
|
||||
}
|
||||
|
||||
max = max.Sub(sdk.OneInt())
|
||||
|
@ -52,7 +53,7 @@ func RandPositiveInt(r *rand.Rand, max sdk.Int) (sdk.Int, error) {
|
|||
|
||||
// RandomAmount generates a random amount
|
||||
// Note: The range of RandomAmount includes max, and is, in fact, biased to return max as well as 0.
|
||||
func RandomAmount(r *rand.Rand, max sdk.Int) sdk.Int {
|
||||
func RandomAmount(r *rand.Rand, max math.Int) math.Int {
|
||||
randInt := big.NewInt(0)
|
||||
|
||||
switch r.Intn(10) {
|
||||
|
|
|
@ -3,17 +3,17 @@
|
|||
// produces apps versioning information based on flags
|
||||
// passed at compile time.
|
||||
//
|
||||
// Configure the version command
|
||||
// # Configure the version command
|
||||
//
|
||||
// The version command can be just added to your cobra root command.
|
||||
// At build time, the variables Name, Version, Commit, and BuildTags
|
||||
// can be passed as build flags as shown in the following example:
|
||||
//
|
||||
// go build -X github.com/cosmos/cosmos-sdk/version.Name=gaia \
|
||||
// -X github.com/cosmos/cosmos-sdk/version.AppName=gaiad \
|
||||
// -X github.com/cosmos/cosmos-sdk/version.Version=1.0 \
|
||||
// -X github.com/cosmos/cosmos-sdk/version.Commit=f0f7b7dab7e36c20b757cebce0e8f4fc5b95de60 \
|
||||
// -X "github.com/cosmos/cosmos-sdk/version.BuildTags=linux darwin amd64"
|
||||
// go build -X github.com/cosmos/cosmos-sdk/version.Name=gaia \
|
||||
// -X github.com/cosmos/cosmos-sdk/version.AppName=gaiad \
|
||||
// -X github.com/cosmos/cosmos-sdk/version.Version=1.0 \
|
||||
// -X github.com/cosmos/cosmos-sdk/version.Commit=f0f7b7dab7e36c20b757cebce0e8f4fc5b95de60 \
|
||||
// -X "github.com/cosmos/cosmos-sdk/version.BuildTags=linux darwin amd64"
|
||||
package version
|
||||
|
||||
import (
|
||||
|
|
|
@ -511,7 +511,6 @@ func (suite *AnteTestSuite) TestAnteHandlerFees() {
|
|||
|
||||
for _, tc := range testCases {
|
||||
suite.Run(fmt.Sprintf("Case %s", tc.desc), func() {
|
||||
|
||||
suite.txBuilder = suite.clientCtx.TxConfig.NewTxBuilder()
|
||||
tc.malleate()
|
||||
|
||||
|
|
|
@ -168,10 +168,8 @@ func (suite *AnteTestSuite) TestConsumeGasForTxSize() {
|
|||
// require that antehandler passes and does not underestimate decorator cost
|
||||
suite.Require().Nil(err, "ConsumeTxSizeGasDecorator returned error: %v", err)
|
||||
suite.Require().True(consumedSimGas >= expectedGas, "Simulate mode underestimates gas on AnteDecorator. Simulated cost: %d, expected cost: %d", consumedSimGas, expectedGas)
|
||||
|
||||
})
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
func (suite *AnteTestSuite) TestTxHeightTimeoutDecorator() {
|
||||
|
|
|
@ -47,10 +47,10 @@ func (dfd DeductFeeDecorator) AnteHandle(ctx sdk.Context, tx sdk.Tx, simulate bo
|
|||
}
|
||||
|
||||
var (
|
||||
priority int64
|
||||
err error
|
||||
priority int64
|
||||
err error
|
||||
)
|
||||
|
||||
|
||||
fee := feeTx.GetFee()
|
||||
if !simulate {
|
||||
fee, priority, err = dfd.txFeeChecker(ctx, tx)
|
||||
|
@ -74,7 +74,7 @@ func (dfd DeductFeeDecorator) checkDeductFee(ctx sdk.Context, sdkTx sdk.Tx, fee
|
|||
}
|
||||
|
||||
if addr := dfd.accountKeeper.GetModuleAddress(types.FeeCollectorName); addr == nil {
|
||||
return fmt.Errorf("Fee collector module account (%s) has not been set", types.FeeCollectorName)
|
||||
return fmt.Errorf("fee collector module account (%s) has not been set", types.FeeCollectorName)
|
||||
}
|
||||
|
||||
feePayer := feeTx.FeePayer()
|
||||
|
|
|
@ -8,9 +8,7 @@ import (
|
|||
"github.com/cosmos/cosmos-sdk/x/auth/migrations/legacytx"
|
||||
)
|
||||
|
||||
var (
|
||||
_ GasTx = (*legacytx.StdTx)(nil) // assert StdTx implements GasTx
|
||||
)
|
||||
var _ GasTx = (*legacytx.StdTx)(nil) // assert StdTx implements GasTx
|
||||
|
||||
// GasTx defines a Tx with a GetGas() method which is needed to use SetUpContextDecorator
|
||||
type GasTx interface {
|
||||
|
|
|
@ -425,7 +425,6 @@ func ConsumeMultisignatureVerificationGas(
|
|||
meter sdk.GasMeter, sig *signing.MultiSignatureData, pubkey multisig.PubKey,
|
||||
params types.Params, accSeq uint64,
|
||||
) error {
|
||||
|
||||
size := sig.BitArray.Count()
|
||||
sigIndex := 0
|
||||
|
||||
|
|
|
@ -10,6 +10,7 @@ import (
|
|||
"strings"
|
||||
"testing"
|
||||
|
||||
"cosmossdk.io/math"
|
||||
"github.com/stretchr/testify/require"
|
||||
"github.com/stretchr/testify/suite"
|
||||
tmcli "github.com/tendermint/tendermint/libs/cli"
|
||||
|
@ -29,7 +30,6 @@ import (
|
|||
"github.com/cosmos/cosmos-sdk/types/tx"
|
||||
"github.com/cosmos/cosmos-sdk/types/tx/signing"
|
||||
authcli "github.com/cosmos/cosmos-sdk/x/auth/client/cli"
|
||||
"github.com/cosmos/cosmos-sdk/x/auth/types"
|
||||
authtypes "github.com/cosmos/cosmos-sdk/x/auth/types"
|
||||
bank "github.com/cosmos/cosmos-sdk/x/bank/client/cli"
|
||||
bankcli "github.com/cosmos/cosmos-sdk/x/bank/client/testutil"
|
||||
|
@ -317,7 +317,7 @@ func (s *IntegrationTestSuite) TestCliGetAccountAddressByID() {
|
|||
s.Require().Error(err)
|
||||
} else {
|
||||
s.Require().NoError(err)
|
||||
var res types.QueryAccountAddressByIDResponse
|
||||
var res authtypes.QueryAccountAddressByIDResponse
|
||||
require.NoError(val1.ClientCtx.Codec.UnmarshalJSON(queryResJSON.Bytes(), &res))
|
||||
require.NotNil(res.GetAccountAddress())
|
||||
}
|
||||
|
@ -1343,7 +1343,7 @@ func (s *IntegrationTestSuite) TestGetAccountsCmd() {
|
|||
|
||||
func TestGetBroadcastCommandOfflineFlag(t *testing.T) {
|
||||
clientCtx := client.Context{}.WithOffline(true)
|
||||
clientCtx = clientCtx.WithTxConfig(simapp.MakeTestEncodingConfig().TxConfig)
|
||||
clientCtx = clientCtx.WithTxConfig(simapp.MakeTestEncodingConfig().TxConfig) //nolint:staticcheck
|
||||
|
||||
cmd := authcli.GetBroadcastCommand()
|
||||
_ = testutil.ApplyMockIODiscardOutErr(cmd)
|
||||
|
@ -1833,7 +1833,7 @@ func (s *IntegrationTestSuite) TestAuxToFeeWithTips() {
|
|||
tc.feePayerArgs...,
|
||||
)
|
||||
|
||||
if tc.expectErrBroadCast {
|
||||
if tc.expectErrBroadCast { //nolint:gocritic
|
||||
require.Error(err)
|
||||
} else if tc.errMsg != "" {
|
||||
require.NoError(err)
|
||||
|
@ -1872,7 +1872,7 @@ func (s *IntegrationTestSuite) createBankMsg(val *network.Validator, toAddr sdk.
|
|||
return bankcli.MsgSendExec(val.ClientCtx, val.Address, toAddr, amount, flags...)
|
||||
}
|
||||
|
||||
func (s *IntegrationTestSuite) getBalances(clientCtx client.Context, addr sdk.AccAddress, denom string) sdk.Int {
|
||||
func (s *IntegrationTestSuite) getBalances(clientCtx client.Context, addr sdk.AccAddress, denom string) math.Int {
|
||||
resp, err := bankcli.QueryBalancesExec(clientCtx, addr)
|
||||
s.Require().NoError(err)
|
||||
|
||||
|
|
|
@ -34,12 +34,12 @@ type wrapper struct {
|
|||
}
|
||||
|
||||
var (
|
||||
_ authsigning.Tx = &wrapper{}
|
||||
_ client.TxBuilder = &wrapper{}
|
||||
_ tx.TipTx = &wrapper{}
|
||||
_ authsigning.Tx = &wrapper{}
|
||||
_ client.TxBuilder = &wrapper{}
|
||||
_ tx.TipTx = &wrapper{}
|
||||
_ ante.HasExtensionOptionsTx = &wrapper{}
|
||||
_ ExtensionOptionsTxBuilder = &wrapper{}
|
||||
_ tx.TipTx = &wrapper{}
|
||||
_ ExtensionOptionsTxBuilder = &wrapper{}
|
||||
_ tx.TipTx = &wrapper{}
|
||||
)
|
||||
|
||||
// ExtensionOptionsTxBuilder defines a TxBuilder that can also set extensions.
|
||||
|
|
|
@ -7,7 +7,6 @@ import (
|
|||
|
||||
"github.com/cosmos/cosmos-sdk/client/grpc/tmservice"
|
||||
sdkerrors "github.com/cosmos/cosmos-sdk/types/errors"
|
||||
"github.com/cosmos/cosmos-sdk/types/query"
|
||||
|
||||
gogogrpc "github.com/gogo/protobuf/grpc"
|
||||
"github.com/golang/protobuf/proto" // nolint: staticcheck
|
||||
|
@ -18,7 +17,7 @@ import (
|
|||
"github.com/cosmos/cosmos-sdk/client"
|
||||
codectypes "github.com/cosmos/cosmos-sdk/codec/types"
|
||||
sdk "github.com/cosmos/cosmos-sdk/types"
|
||||
pagination "github.com/cosmos/cosmos-sdk/types/query"
|
||||
querytypes "github.com/cosmos/cosmos-sdk/types/query"
|
||||
txtypes "github.com/cosmos/cosmos-sdk/types/tx"
|
||||
)
|
||||
|
||||
|
@ -62,7 +61,7 @@ func (s txServer) GetTxsEvent(ctx context.Context, req *txtypes.GetTxsEventReque
|
|||
|
||||
limit := int(req.Limit)
|
||||
if limit == 0 {
|
||||
limit = query.DefaultLimit
|
||||
limit = querytypes.DefaultLimit
|
||||
}
|
||||
orderBy := parseOrderBy(req.OrderBy)
|
||||
|
||||
|
@ -198,7 +197,7 @@ func (s txServer) GetBlockWithTxs(ctx context.Context, req *txtypes.GetBlockWith
|
|||
limit = req.Pagination.Limit
|
||||
} else {
|
||||
offset = 0
|
||||
limit = pagination.DefaultLimit
|
||||
limit = querytypes.DefaultLimit
|
||||
}
|
||||
|
||||
blockTxs := block.Data.Txs
|
||||
|
@ -238,7 +237,7 @@ func (s txServer) GetBlockWithTxs(ctx context.Context, req *txtypes.GetBlockWith
|
|||
Txs: txs,
|
||||
BlockId: &blockID,
|
||||
Block: block,
|
||||
Pagination: &pagination.PageResponse{
|
||||
Pagination: &querytypes.PageResponse{
|
||||
Total: blockTxsLn,
|
||||
},
|
||||
}, nil
|
||||
|
|
|
@ -26,6 +26,7 @@ var (
|
|||
)
|
||||
|
||||
// NewBaseAccount creates a new BaseAccount object
|
||||
//
|
||||
//nolint:interfacer
|
||||
func NewBaseAccount(address sdk.AccAddress, pubKey cryptotypes.PubKey, accountNumber, sequence uint64) *BaseAccount {
|
||||
acc := &BaseAccount{
|
||||
|
|
|
@ -71,8 +71,10 @@ func DefaultParams() Params {
|
|||
|
||||
// SigVerifyCostSecp256r1 returns gas fee of secp256r1 signature verification.
|
||||
// Set by benchmarking current implementation:
|
||||
// BenchmarkSig/secp256k1 4334 277167 ns/op 4128 B/op 79 allocs/op
|
||||
// BenchmarkSig/secp256r1 10000 108769 ns/op 1672 B/op 33 allocs/op
|
||||
//
|
||||
// BenchmarkSig/secp256k1 4334 277167 ns/op 4128 B/op 79 allocs/op
|
||||
// BenchmarkSig/secp256r1 10000 108769 ns/op 1672 B/op 33 allocs/op
|
||||
//
|
||||
// Based on the results above secp256k1 is 2.7x is slwer. However we propose to discount it
|
||||
// because we are we don't compare the cgo implementation of secp256k1, which is faster.
|
||||
func (p Params) SigVerifyCostSecp256r1() uint64 {
|
||||
|
|
|
@ -23,6 +23,7 @@ var _ sdk.Msg = &MsgCreatePermanentLockedAccount{}
|
|||
var _ sdk.Msg = &MsgCreatePeriodicVestingAccount{}
|
||||
|
||||
// NewMsgCreateVestingAccount returns a reference to a new MsgCreateVestingAccount.
|
||||
//
|
||||
//nolint:interfacer
|
||||
func NewMsgCreateVestingAccount(fromAddr, toAddr sdk.AccAddress, amount sdk.Coins, endTime int64, delayed bool) *MsgCreateVestingAccount {
|
||||
return &MsgCreateVestingAccount{
|
||||
|
@ -77,6 +78,7 @@ func (msg MsgCreateVestingAccount) GetSigners() []sdk.AccAddress {
|
|||
}
|
||||
|
||||
// NewMsgCreatePermanentLockedAccount returns a reference to a new MsgCreatePermanentLockedAccount.
|
||||
//
|
||||
//nolint:interfacer
|
||||
func NewMsgCreatePermanentLockedAccount(fromAddr, toAddr sdk.AccAddress, amount sdk.Coins) *MsgCreatePermanentLockedAccount {
|
||||
return &MsgCreatePermanentLockedAccount{
|
||||
|
@ -125,6 +127,7 @@ func (msg MsgCreatePermanentLockedAccount) GetSigners() []sdk.AccAddress {
|
|||
}
|
||||
|
||||
// NewMsgCreatePeriodicVestingAccount returns a reference to a new MsgCreatePeriodicVestingAccount.
|
||||
//
|
||||
//nolint:interfacer
|
||||
func NewMsgCreatePeriodicVestingAccount(fromAddr, toAddr sdk.AccAddress, startTime int64, periods []Period) *MsgCreatePeriodicVestingAccount {
|
||||
return &MsgCreatePeriodicVestingAccount{
|
||||
|
|
|
@ -852,6 +852,7 @@ func (s *IntegrationTestSuite) TestNewExecGrantAuthorized() {
|
|||
},
|
||||
}
|
||||
|
||||
//nolint:gocritic // else if chain should be refactored to switch
|
||||
for _, tc := range testCases {
|
||||
tc := tc
|
||||
s.Run(tc.name, func() {
|
||||
|
|
|
@ -6,13 +6,12 @@ can be (de)serialized properly.
|
|||
Amino types should be ideally registered inside this codec within the init function of each module's
|
||||
codec.go file as follows:
|
||||
|
||||
func init() {
|
||||
// ...
|
||||
func init() {
|
||||
// ...
|
||||
|
||||
RegisterLegacyAminoCodec(authzcodec.Amino)
|
||||
}
|
||||
RegisterLegacyAminoCodec(authzcodec.Amino)
|
||||
}
|
||||
|
||||
The codec instance is put inside this package and not the x/authz package in order to avoid any dependency cycle.
|
||||
|
||||
*/
|
||||
package codec
|
||||
|
|
|
@ -121,11 +121,9 @@ func (k Keeper) GranterGrants(c context.Context, req *authz.QueryGranterGrantsRe
|
|||
Authorization: any,
|
||||
Expiration: auth.Expiration,
|
||||
}, nil
|
||||
|
||||
}, func() *authz.Grant {
|
||||
return &authz.Grant{}
|
||||
})
|
||||
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
|
|
|
@ -253,9 +253,9 @@ func (k Keeper) GetAuthorizations(ctx sdk.Context, grantee sdk.AccAddress, grant
|
|||
|
||||
// GetAuthorization returns an Authorization and it's expiration time.
|
||||
// A nil Authorization is returned under the following circumstances:
|
||||
// - No grant is found.
|
||||
// - A grant is found, but it is expired.
|
||||
// - There was an error getting the authorization from the grant.
|
||||
// - No grant is found.
|
||||
// - A grant is found, but it is expired.
|
||||
// - There was an error getting the authorization from the grant.
|
||||
func (k Keeper) GetAuthorization(ctx sdk.Context, grantee sdk.AccAddress, granter sdk.AccAddress, msgType string) (authz.Authorization, *time.Time) {
|
||||
grant, found := k.getGrant(ctx, grantStoreKey(grantee, granter, msgType))
|
||||
if !found || (grant.Expiration != nil && grant.Expiration.Before(ctx.BlockHeader().Time)) {
|
||||
|
|
|
@ -15,7 +15,6 @@ import (
|
|||
//
|
||||
// - 0x01<grant_Bytes>: Grant
|
||||
// - 0x02<grant_expiration_Bytes>: GrantQueueItem
|
||||
//
|
||||
var (
|
||||
GrantKey = []byte{0x01} // prefix for each key
|
||||
GrantQueuePrefix = []byte{0x02}
|
||||
|
@ -78,7 +77,8 @@ func parseGrantQueueKey(key []byte) (time.Time, sdk.AccAddress, sdk.AccAddress,
|
|||
// GrantQueueKey - return grant queue store key. If a given grant doesn't have a defined
|
||||
// expiration, then it should not be used in the pruning queue.
|
||||
// Key format is:
|
||||
// 0x02<grant_expiration_Bytes>: GrantQueueItem
|
||||
//
|
||||
// 0x02<grant_expiration_Bytes>: GrantQueueItem
|
||||
func GrantQueueKey(expiration time.Time, granter sdk.AccAddress, grantee sdk.AccAddress) []byte {
|
||||
exp := sdk.FormatTimeBytes(expiration)
|
||||
granter = address.MustLengthPrefix(granter)
|
||||
|
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue