Skip to content

Commit c5ece4d

Browse files
committed
#303 Upgrade Cosmos-SDK to v0.47.3
FIx linter errors Signed-off-by: Abdulbois <abdulbois.tursunov@dsr-corporation.com> Signed-off-by: Abdulbois <abdulbois123@gmail.com>
1 parent 153cb7b commit c5ece4d

File tree

93 files changed

+471
-452
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

93 files changed

+471
-452
lines changed

.golangci.yml

+27
Original file line numberDiff line numberDiff line change
@@ -50,3 +50,30 @@ linters:
5050
- nonamedreturns
5151
- exhaustruct
5252
- gofumpt
53+
- depguard
54+
- deadcode
55+
- godot
56+
- inamedparam
57+
- goconst
58+
59+
issues:
60+
exclude-rules:
61+
- path: _test\.go$
62+
linters:
63+
- goconst
64+
- stylecheck
65+
- testifylint
66+
- nosnakecase
67+
- perfsprint
68+
- dupword
69+
- testifylint
70+
- path: helpers\.go$
71+
linters:
72+
- goconst
73+
- stylecheck
74+
- testifylint
75+
- nosnakecase
76+
- perfsprint
77+
- dupword
78+
- testifylint
79+

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ endif
2828

2929

3030
### Process build tags
31-
build_tags = netgo
31+
build_tags = netgo cgo
3232
ifeq ($(LEDGER_ENABLED),true)
3333
ifeq ($(OS),Windows_NT)
3434
GCCEXE = $(shell where gcc.exe 2> NUL)

app/app.go

+3-5
Original file line numberDiff line numberDiff line change
@@ -132,8 +132,7 @@ var (
132132
)
133133

134134
// module account permissions.
135-
maccPerms = map[string][]string{
136-
/*
135+
/* maccPerms = map[string][]string{
137136
authtypes.FeeCollectorName: nil,
138137
distrtypes.ModuleName: nil,
139138
minttypes.ModuleName: {authtypes.Minter},
@@ -142,8 +141,8 @@ var (
142141
govtypes.ModuleName: {authtypes.Burner},
143142
ibctransfertypes.ModuleName: {authtypes.Minter, authtypes.Burner},
144143
// this line is used by starport scaffolding # stargate/app/maccPerms
145-
*/
146144
}
145+
*/
147146
)
148147

149148
var (
@@ -248,7 +247,6 @@ func New(
248247
homePath string,
249248
invCheckPeriod uint,
250249
encodingConfig appparams.EncodingConfig,
251-
appOpts servertypes.AppOptions,
252250
baseAppOptions ...func(*baseapp.BaseApp),
253251
) *App {
254252
appCodec := encodingConfig.Codec
@@ -573,7 +571,7 @@ func New(
573571
)
574572

575573
// app.mm.RegisterInvariants(&app.CrisisKeeper)
576-
//app.mm.RegisterRoutes(app.Router(), app.QueryRouter(), encodingConfig.Amino)
574+
// app.mm.RegisterRoutes(app.Router(), app.QueryRouter(), encodingConfig.Amino)
577575

578576
app.configurator = module.NewConfigurator(app.appCodec, app.MsgServiceRouter(), app.GRPCQueryRouter())
579577
app.mm.RegisterServices(app.configurator)

app/encoding.go

+1
Original file line numberDiff line numberDiff line change
@@ -31,5 +31,6 @@ func MakeEncodingConfig() params.EncodingConfig {
3131
std.RegisterInterfaces(encodingConfig.InterfaceRegistry)
3232
ModuleBasics.RegisterLegacyAminoCodec(encodingConfig.Amino)
3333
ModuleBasics.RegisterInterfaces(encodingConfig.InterfaceRegistry)
34+
3435
return encodingConfig
3536
}

app/export.go

+1-2
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,7 @@ import (
1010

1111
// ExportAppStateAndValidators exports the state of the application for a genesis
1212
// file.
13-
func (app *App) ExportAppStateAndValidators(forZeroHeight bool, jailAllowedAddrs []string, modulesToExport []string) (servertypes.ExportedApp, error) {
14-
13+
func (app *App) ExportAppStateAndValidators(_ bool, _ []string, modulesToExport []string) (servertypes.ExportedApp, error) {
1514
// as if they could withdraw from the start of the next block
1615
ctx := app.NewContext(true, tmproto.Header{Height: app.LastBlockHeight()})
1716

cmd/dcld/cmd/genaccounts.go

+5-6
Original file line numberDiff line numberDiff line change
@@ -6,17 +6,18 @@ import (
66
"fmt"
77
"strings"
88

9+
"github.com/spf13/cast"
10+
"github.com/spf13/cobra"
11+
"github.com/spf13/viper"
12+
913
"github.com/cosmos/cosmos-sdk/client"
1014
"github.com/cosmos/cosmos-sdk/client/flags"
11-
// "github.com/cosmos/cosmos-sdk/crypto/keyring".
1215
"github.com/cosmos/cosmos-sdk/crypto/keyring"
1316
cryptotypes "github.com/cosmos/cosmos-sdk/crypto/types"
1417
"github.com/cosmos/cosmos-sdk/server"
1518
sdk "github.com/cosmos/cosmos-sdk/types"
1619
authtypes "github.com/cosmos/cosmos-sdk/x/auth/types"
17-
"github.com/spf13/cast"
18-
"github.com/spf13/cobra"
19-
"github.com/spf13/viper"
20+
2021
"github.com/zigbee-alliance/distributed-compliance-ledger/x/common/types"
2122
dclauthtypes "github.com/zigbee-alliance/distributed-compliance-ledger/x/dclauth/types"
2223
"github.com/zigbee-alliance/distributed-compliance-ledger/x/dclgenutil"
@@ -32,8 +33,6 @@ const (
3233
)
3334

3435
// AddGenesisAccountCmd returns add-genesis-account cobra Command.
35-
//
36-
//nolint:staticcheck
3736
func AddGenesisAccountCmd(defaultNodeHome string) *cobra.Command {
3837
cmd := &cobra.Command{
3938
Use: "add-genesis-account ",

cmd/dcld/cmd/root.go

+11-17
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,19 @@ package cmd
22

33
import (
44
"errors"
5-
tmtypes "github.com/cometbft/cometbft/types"
65
"io"
76
"os"
87
"path/filepath"
98

9+
"github.com/spf13/cast"
10+
"github.com/spf13/cobra"
11+
"github.com/spf13/pflag"
12+
1013
rosettaCmd "cosmossdk.io/tools/rosetta/cmd"
1114
dbm "github.com/cometbft/cometbft-db"
1215
tmcfg "github.com/cometbft/cometbft/config"
1316
"github.com/cometbft/cometbft/libs/log"
17+
tmtypes "github.com/cometbft/cometbft/types"
1418
"github.com/cosmos/cosmos-sdk/baseapp"
1519
"github.com/cosmos/cosmos-sdk/client"
1620
"github.com/cosmos/cosmos-sdk/client/config"
@@ -27,9 +31,6 @@ import (
2731
sdk "github.com/cosmos/cosmos-sdk/types"
2832
authcmd "github.com/cosmos/cosmos-sdk/x/auth/client/cli"
2933
"github.com/cosmos/cosmos-sdk/x/crisis"
30-
"github.com/spf13/cast"
31-
"github.com/spf13/cobra"
32-
"github.com/spf13/pflag"
3334

3435
"github.com/zigbee-alliance/distributed-compliance-ledger/app"
3536
appparams "github.com/zigbee-alliance/distributed-compliance-ledger/app/params"
@@ -54,13 +55,7 @@ type rootOptions struct {
5455
// envPrefix string
5556
}
5657

57-
func newRootOptions(options ...Option) rootOptions {
58-
opts := rootOptions{}
59-
opts.apply(options...)
60-
61-
return opts
62-
}
63-
58+
//nolint:unused
6459
func (s *rootOptions) apply(options ...Option) {
6560
for _, o := range options {
6661
o(s)
@@ -143,6 +138,7 @@ func NewRootCmd() (*cobra.Command, appparams.EncodingConfig) {
143138
// return tmcfg.DefaultConfig if no custom configuration is required for the application.
144139
func initTendermintConfig() *tmcfg.Config {
145140
cfg := tmcfg.DefaultConfig()
141+
146142
return cfg
147143
}
148144

@@ -304,15 +300,15 @@ func (a appCreator) newApp(
304300
)
305301

306302
homeDir := cast.ToString(appOpts.Get(flags.FlagHome))
307-
chainID_ := cast.ToString(appOpts.Get(flags.FlagChainID))
308-
if chainID_ == "" {
303+
appChainID := cast.ToString(appOpts.Get(flags.FlagChainID))
304+
if appChainID == "" {
309305
// fallback to genesis chain-id
310306
appGenesis, err := tmtypes.GenesisDocFromFile(filepath.Join(homeDir, "config", "genesis.json"))
311307
if err != nil {
312308
panic(err)
313309
}
314310

315-
chainID_ = appGenesis.ChainID
311+
appChainID = appGenesis.ChainID
316312
}
317313

318314
return app.New(
@@ -324,7 +320,6 @@ func (a appCreator) newApp(
324320
cast.ToString(appOpts.Get(flags.FlagHome)),
325321
cast.ToUint(appOpts.Get(server.FlagInvCheckPeriod)),
326322
a.encodingConfig,
327-
appOpts,
328323
baseapp.SetPruning(pruningOpts),
329324
baseapp.SetMinGasPrices(cast.ToString(appOpts.Get(server.FlagMinGasPrices))),
330325
baseapp.SetHaltHeight(cast.ToUint64(appOpts.Get(server.FlagHaltHeight))),
@@ -335,7 +330,7 @@ func (a appCreator) newApp(
335330
baseapp.SetIndexEvents(cast.ToStringSlice(appOpts.Get(server.FlagIndexEvents))),
336331
baseapp.SetSnapshot(snapshotStore, snapshotOptions),
337332
baseapp.SetIAVLCacheSize(cast.ToInt(appOpts.Get(server.FlagIAVLCacheSize))),
338-
baseapp.SetChainID(chainID_),
333+
baseapp.SetChainID(appChainID),
339334
)
340335
}
341336

@@ -364,7 +359,6 @@ func (a appCreator) appExport(
364359
homePath,
365360
uint(1),
366361
a.encodingConfig,
367-
appOpts,
368362
)
369363

370364
if height != -1 {

cmd/dcld/main.go

+5-4
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
11
package main
22

33
import (
4-
"github.com/cosmos/cosmos-sdk/server"
4+
"errors"
55
"os"
66

7+
"github.com/cosmos/cosmos-sdk/server"
78
svrcmd "github.com/cosmos/cosmos-sdk/server/cmd"
89

910
"github.com/zigbee-alliance/distributed-compliance-ledger/app"
@@ -13,10 +14,10 @@ import (
1314
func main() {
1415
rootCmd, _ := cmd.NewRootCmd()
1516
if err := svrcmd.Execute(rootCmd, "", app.DefaultNodeHome); err != nil {
16-
switch e := err.(type) {
17-
case server.ErrorCode:
17+
var e server.ErrorCode
18+
switch {
19+
case errors.As(err, &e):
1820
os.Exit(e.Code)
19-
2021
default:
2122
os.Exit(1)
2223
}

go.mod

+5-6
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ go 1.20
55
require (
66
cosmossdk.io/api v0.3.1
77
cosmossdk.io/core v0.5.1
8+
cosmossdk.io/errors v1.0.0-beta.7
89
cosmossdk.io/math v1.0.1
910
cosmossdk.io/tools/rosetta v0.2.1
1011
github.com/bufbuild/buf v1.7.0
@@ -41,9 +42,9 @@ require (
4142
cloud.google.com/go/iam v1.1.5 // indirect
4243
cloud.google.com/go/storage v1.30.1 // indirect
4344
cosmossdk.io/depinject v1.0.0-alpha.3 // indirect
44-
cosmossdk.io/errors v1.0.0-beta.7 // indirect
4545
cosmossdk.io/log v1.1.0 // indirect
4646
filippo.io/edwards25519 v1.0.0 // indirect
47+
github.com/99designs/go-keychain v0.0.0-20191008050251-8e49817e8af4 // indirect
4748
github.com/99designs/keyring v1.2.1 // indirect
4849
github.com/Azure/go-ansiterm v0.0.0-20210617225240-d185dfc1b5a1 // indirect
4950
github.com/ChainSafe/go-schnorrkel v0.0.0-20200405005733-88cbf1b4c40d // indirect
@@ -131,7 +132,6 @@ require (
131132
github.com/jhump/protoreflect v1.15.1 // indirect
132133
github.com/jmespath/go-jmespath v0.4.0 // indirect
133134
github.com/jmhodges/levigo v1.0.0 // indirect
134-
github.com/keybase/go-keychain v0.0.0-20190712205309-48d3d31d256d // indirect
135135
github.com/klauspost/compress v1.16.3 // indirect
136136
github.com/klauspost/pgzip v1.2.5 // indirect
137137
github.com/leodido/go-urn v1.2.1 // indirect
@@ -179,8 +179,8 @@ require (
179179
github.com/tendermint/go-amino v0.16.0 // indirect
180180
github.com/tidwall/btree v1.6.0 // indirect
181181
github.com/ulikunitz/xz v0.5.11 // indirect
182-
github.com/zondax/hid v0.9.1 // indirect
183-
github.com/zondax/ledger-go v0.14.0 // indirect
182+
github.com/zondax/hid v0.9.2 // indirect
183+
github.com/zondax/ledger-go v0.14.3 // indirect
184184
go.etcd.io/bbolt v1.3.7 // indirect
185185
go.opencensus.io v0.24.0 // indirect
186186
go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.36.3 // indirect
@@ -212,7 +212,6 @@ require (
212212
)
213213

214214
replace (
215-
cosmossdk.io/simapp => cosmossdk.io/simapp v0.0.0-20240119091742-c5826868d4e5
216-
github.com/99designs/keyring => github.com/cosmos/keyring v1.1.7-0.20210622111912-ef00f8ac3d76
215+
github.com/99designs/keyring => github.com/cosmos/keyring v1.2.0
217216
github.com/syndtr/goleveldb => github.com/syndtr/goleveldb v1.0.1-0.20210819022825-2ae1ddf74ef7
218217
)

go.sum

+8-12
Original file line numberDiff line numberDiff line change
@@ -204,6 +204,8 @@ cosmossdk.io/tools/rosetta v0.2.1/go.mod h1:Pqdc1FdvkNV3LcNIkYWt2RQY6IP1ge6YWZk8
204204
dmitri.shuralyov.com/gpu/mtl v0.0.0-20190408044501-666a987793e9/go.mod h1:H6x//7gZCb22OMCxBHrMx7a5I7Hp++hsVxbQ4BYO7hU=
205205
filippo.io/edwards25519 v1.0.0 h1:0wAIcmJUqRdI8IJ/3eGi5/HwXZWPujYXXlkrQogz0Ek=
206206
filippo.io/edwards25519 v1.0.0/go.mod h1:N1IkdkCkiLB6tki+MYJoSx2JTY9NUlxZE7eHn5EwJns=
207+
github.com/99designs/go-keychain v0.0.0-20191008050251-8e49817e8af4 h1:/vQbFIOMbk2FiG/kXiLl8BRyzTWDw7gX/Hz7Dd5eDMs=
208+
github.com/99designs/go-keychain v0.0.0-20191008050251-8e49817e8af4/go.mod h1:hN7oaIRCjzsZ2dE+yG5k+rsdt3qcwykqK6HVGcKwsw4=
207209
github.com/Azure/go-ansiterm v0.0.0-20210617225240-d185dfc1b5a1 h1:UQHMgLO+TxOElx5B5HZ4hJQsoJ/PvUvKRhJHDQXO8P8=
208210
github.com/Azure/go-ansiterm v0.0.0-20210617225240-d185dfc1b5a1/go.mod h1:xomTg63KZ2rFqZQzSB4Vz2SUXa1BpHTVz9L5PTmPC4E=
209211
github.com/BurntSushi/toml v0.3.1/go.mod h1:xHWCNGjB5oqiDr8zfno3MHue2Ht5sIBksp03qcyfWMU=
@@ -340,8 +342,8 @@ github.com/cosmos/gogoproto v1.4.10 h1:QH/yT8X+c0F4ZDacDv3z+xE3WU1P1Z3wQoLMBRJoK
340342
github.com/cosmos/gogoproto v1.4.10/go.mod h1:3aAZzeRWpAwr+SS/LLkICX2/kDFyaYVzckBDzygIxek=
341343
github.com/cosmos/iavl v0.20.0 h1:fTVznVlepH0KK8NyKq8w+U7c2L6jofa27aFX6YGlm38=
342344
github.com/cosmos/iavl v0.20.0/go.mod h1:WO7FyvaZJoH65+HFOsDir7xU9FWk2w9cHXNW1XHcl7A=
343-
github.com/cosmos/keyring v1.1.7-0.20210622111912-ef00f8ac3d76 h1:DdzS1m6o/pCqeZ8VOAit/gyATedRgjvkVI+UCrLpyuU=
344-
github.com/cosmos/keyring v1.1.7-0.20210622111912-ef00f8ac3d76/go.mod h1:0mkLWIoZuQ7uBoospo5Q9zIpqq6rYCPJDSUdeCJvPM8=
345+
github.com/cosmos/keyring v1.2.0 h1:8C1lBP9xhImmIabyXW4c3vFjjLiBdGCmfLUfeZlV1Yo=
346+
github.com/cosmos/keyring v1.2.0/go.mod h1:fc+wB5KTk9wQ9sDx0kFXB3A0MaeGHM9AwRStKOQ5vOA=
345347
github.com/cosmos/ledger-cosmos-go v0.12.1 h1:sMBxza5p/rNK/06nBSNmsI/WDqI0pVJFVNihy1Y984w=
346348
github.com/cosmos/ledger-cosmos-go v0.12.1/go.mod h1:dhO6kj+Y+AHIOgAe4L9HL/6NDdyyth4q238I9yFpD2g=
347349
github.com/cosmos/rosetta-sdk-go v0.10.0 h1:E5RhTruuoA7KTIXUcMicL76cffyeoyvNybzUGSKFTcM=
@@ -358,7 +360,6 @@ github.com/creack/pty v1.1.11 h1:07n33Z8lZxZ2qwegKbObQohDhXDQxiMMz1NOUGYlesw=
358360
github.com/creack/pty v1.1.11/go.mod h1:oKZEueFk5CKHvIhNR5MUki03XCEU+Q6VDXinZuGJ33E=
359361
github.com/cucumber/common/gherkin/go/v22 v22.0.0 h1:4K8NqptbvdOrjL9DEea6HFjSpbdT9+Q5kgLpmmsHYl0=
360362
github.com/cucumber/common/messages/go/v17 v17.1.1 h1:RNqopvIFyLWnKv0LfATh34SWBhXeoFTJnSrgm9cT/Ts=
361-
github.com/danieljoos/wincred v1.0.2/go.mod h1:SnuYRW9lp1oJrZX/dXJqr0cPK5gYXqx3EJbmjhLdK9U=
362363
github.com/danieljoos/wincred v1.1.2 h1:QLdCxFs1/Yl4zduvBdcHB8goaYk9RARS2SgLLRuAyr0=
363364
github.com/danieljoos/wincred v1.1.2/go.mod h1:GijpziifJoIBfYh+S7BbkdUTU4LfM+QnGqR5Vl2tAx0=
364365
github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
@@ -390,7 +391,6 @@ github.com/dustin/go-humanize v0.0.0-20171111073723-bb3d318650d4/go.mod h1:Htrtb
390391
github.com/dustin/go-humanize v1.0.0/go.mod h1:HtrtbFcZ19U5GC7JDqmcUSB87Iq5E25KnS6fMYU6eOk=
391392
github.com/dustin/go-humanize v1.0.1 h1:GzkhY7T5VNhEkwH0PVJgjz+fX1rhBrR7pRT3mDkpeCY=
392393
github.com/dustin/go-humanize v1.0.1/go.mod h1:Mu1zIs6XwVuF/gI1OepvI0qD18qycQx+mFykh5fBlto=
393-
github.com/dvsekhvalnov/jose2go v0.0.0-20200901110807-248326c1351b/go.mod h1:7BvyPhdbLxMXIYTFPLsyJRFMsKmOZnQmzh6Gb+uquuM=
394394
github.com/dvsekhvalnov/jose2go v1.5.0 h1:3j8ya4Z4kMCwT5nXIKFSV84YS+HdqSSO0VsTQxaLAeM=
395395
github.com/dvsekhvalnov/jose2go v1.5.0/go.mod h1:QsHjhyTlD/lAVqn/NSbVZmSCGeDehTB/mPZadG+mhXU=
396396
github.com/eapache/go-resiliency v1.1.0/go.mod h1:kFI+JgMyC7bLPUVY133qvEBtVayf5mFgVsvEsIPBvNs=
@@ -712,8 +712,6 @@ github.com/jstemmer/go-junit-report v0.9.1/go.mod h1:Brl9GWCQeLvo8nXZwPNNblvFj/X
712712
github.com/jtolds/gls v4.20.0+incompatible/go.mod h1:QJZ7F/aHp+rZTRtaJ1ow/lLfFfVYBRgL+9YlvaHOwJU=
713713
github.com/julienschmidt/httprouter v1.2.0/go.mod h1:SYymIcj16QtmaHHD7aYtjjsJG7VTCxuUUipMqKk8s4w=
714714
github.com/julienschmidt/httprouter v1.3.0/go.mod h1:JR6WtHb+2LUe8TCKY3cZOxFyyO8IZAc4RVcycCCAKdM=
715-
github.com/keybase/go-keychain v0.0.0-20190712205309-48d3d31d256d h1:Z+RDyXzjKE0i2sTjZ/b1uxiGtPhFy34Ou/Tk0qwN0kM=
716-
github.com/keybase/go-keychain v0.0.0-20190712205309-48d3d31d256d/go.mod h1:JJNrCn9otv/2QP4D7SMJBgaleKpOf66PnW6F5WGNRIc=
717715
github.com/kisielk/errcheck v1.1.0/go.mod h1:EZBBE59ingxPouuu3KfxchcWSUPOHkagtvWXihfKN4Q=
718716
github.com/kisielk/errcheck v1.2.0/go.mod h1:/BMXB+zMLi60iA8Vv6Ksmxu/1UDYcXs4uQLJ+jE2L00=
719717
github.com/kisielk/errcheck v1.5.0/go.mod h1:pFxgyoBC7bSaBwPgfKdkLd5X25qrDl4LWUI2bnpBCr8=
@@ -971,7 +969,6 @@ github.com/streadway/amqp v0.0.0-20190827072141-edfb9018d271/go.mod h1:AZpEONHx3
971969
github.com/streadway/handy v0.0.0-20190108123426-d5acb3125c2a/go.mod h1:qNTQ5P5JnDBl6z3cMAg/SywNDC5ABu5ApDIw6lUbRmI=
972970
github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME=
973971
github.com/stretchr/objx v0.1.1/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME=
974-
github.com/stretchr/objx v0.2.0/go.mod h1:qt09Ya8vawLte6SNmTgCsAVtYtaKzEcn8ATUoHMkEqE=
975972
github.com/stretchr/objx v0.4.0/go.mod h1:YvHI0jy2hoMjB+UWwv71VJQ9isScKT/TqJzVSSt89Yw=
976973
github.com/stretchr/objx v0.5.0 h1:1zr/of2m5FGMsad5YfcqgdqdWrIhu+EBEJRhR1U7z/c=
977974
github.com/stretchr/objx v0.5.0/go.mod h1:Yh+to48EsGEfYuaHDzXPcE3xhTkx73EhmCGUpEOglKo=
@@ -1016,10 +1013,10 @@ github.com/yuin/goldmark v1.1.32/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9de
10161013
github.com/yuin/goldmark v1.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74=
10171014
github.com/yuin/goldmark v1.3.5/go.mod h1:mwnBkeHKe2W/ZEtQ+71ViKU8L12m81fl3OWwC1Zlc8k=
10181015
github.com/yuin/goldmark v1.4.13/go.mod h1:6yULJ656Px+3vBD8DxQVa3kxgyrAnzto9xy5taEt/CY=
1019-
github.com/zondax/hid v0.9.1 h1:gQe66rtmyZ8VeGFcOpbuH3r7erYtNEAezCAYu8LdkJo=
1020-
github.com/zondax/hid v0.9.1/go.mod h1:l5wttcP0jwtdLjqjMMWFVEE7d1zO0jvSPA9OPZxWpEM=
1021-
github.com/zondax/ledger-go v0.14.0 h1:dlMC7aO8Wss1CxBq2I96kZ69Nh1ligzbs8UWOtq/AsA=
1022-
github.com/zondax/ledger-go v0.14.0/go.mod h1:fZ3Dqg6qcdXWSOJFKMG8GCTnD7slO/RL2feOQv8K320=
1016+
github.com/zondax/hid v0.9.2 h1:WCJFnEDMiqGF64nlZz28E9qLVZ0KSJ7xpc5DLEyma2U=
1017+
github.com/zondax/hid v0.9.2/go.mod h1:l5wttcP0jwtdLjqjMMWFVEE7d1zO0jvSPA9OPZxWpEM=
1018+
github.com/zondax/ledger-go v0.14.3 h1:wEpJt2CEcBJ428md/5MgSLsXLBos98sBOyxNmCjfUCw=
1019+
github.com/zondax/ledger-go v0.14.3/go.mod h1:IKKaoxupuB43g4NxeQmbLXv7T9AlQyie1UpHb342ycI=
10231020
go.etcd.io/bbolt v1.3.3/go.mod h1:IbVyRI1SCnLcuJnV2u8VeU0CEYM7e686BmAb1XKL+uU=
10241021
go.etcd.io/bbolt v1.3.7 h1:j+zJOnnEjF/kyHlDDgGnVL/AIqIJPq8UoB2GSNfkUfQ=
10251022
go.etcd.io/bbolt v1.3.7/go.mod h1:N9Mkw9X8x5fupy0IKsmuqVtoGDyxsaDlbk4Rd05IAQw=
@@ -1243,7 +1240,6 @@ golang.org/x/sys v0.0.0-20190507160741-ecd444e8653b/go.mod h1:h1NjWce9XRLGQEsW7w
12431240
golang.org/x/sys v0.0.0-20190606165138-5da285871e9c/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
12441241
golang.org/x/sys v0.0.0-20190624142023-c5567b49c5d0/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
12451242
golang.org/x/sys v0.0.0-20190626221950-04f50cda93cb/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
1246-
golang.org/x/sys v0.0.0-20190712062909-fae7ac547cb7/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
12471243
golang.org/x/sys v0.0.0-20190726091711-fc99dfbffb4e/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
12481244
golang.org/x/sys v0.0.0-20190826190057-c7b8b68b1456/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
12491245
golang.org/x/sys v0.0.0-20190904154756-749cb33beabd/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=

0 commit comments

Comments
 (0)