Skip to content

Commit 56a85c3

Browse files
committed
rebase fix
Signed-off-by: Angelo De Caro <[email protected]>
1 parent c3c5ace commit 56a85c3

File tree

5 files changed

+3
-14
lines changed

5 files changed

+3
-14
lines changed

Diff for: go.mod

-7
Original file line numberDiff line numberDiff line change
@@ -48,8 +48,6 @@ require (
4848
github.com/alecthomas/kingpin/v2 v2.4.0 // indirect
4949
github.com/alecthomas/units v0.0.0-20240626203959-61d1e3462e30 // indirect
5050
github.com/hyperledger/aries-bbs-go v0.0.0-20240528084656-761671ea73bc // indirect
51-
github.com/pelletier/go-toml v1.9.5 // indirect
52-
github.com/spf13/jwalterweatherman v1.1.0 // indirect
5351
github.com/xhit/go-str2duration/v2 v2.1.0 // indirect
5452
)
5553

@@ -67,10 +65,6 @@ require (
6765
github.com/IBM/idemix/bccsp/schemes/weak-bb v0.0.0-20240820063231-23c21a416ee1 // indirect
6866
github.com/Knetic/govaluate v3.0.1-0.20171022003610-9aa49832a739+incompatible // indirect
6967
github.com/Microsoft/go-winio v0.6.2 // indirect
70-
github.com/Microsoft/hcsshim v0.11.5 // indirect
71-
github.com/ale-linux/aries-framework-go/component/kmscrypto v0.0.0-20231023164747-f3f972769504 // indirect
72-
github.com/alecthomas/kingpin/v2 v2.4.0 // indirect
73-
github.com/alecthomas/units v0.0.0-20240626203959-61d1e3462e30 // indirect
7468
github.com/benbjohnson/clock v1.3.5 // indirect
7569
github.com/beorn7/perks v1.0.1 // indirect
7670
github.com/bits-and-blooms/bitset v1.13.0 // indirect
@@ -265,7 +259,6 @@ require (
265259
github.com/xeipuuv/gojsonpointer v0.0.0-20190905194746-02993c407bfb // indirect
266260
github.com/xeipuuv/gojsonreference v0.0.0-20180127040603-bd5ef7bd5415 // indirect
267261
github.com/xeipuuv/gojsonschema v1.2.0 // indirect
268-
github.com/xhit/go-str2duration/v2 v2.1.0 // indirect
269262
github.com/yusufpapurcu/wmi v1.2.3 // indirect
270263
go.opencensus.io v0.24.0 // indirect
271264
go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.53.0 // indirect

Diff for: go.sum

-2
Original file line numberDiff line numberDiff line change
@@ -1068,8 +1068,6 @@ github.com/hidal-go/hidalgo v0.0.0-20201109092204-05749a6d73df/go.mod h1:bPkrxDl
10681068
github.com/hpcloud/tail v1.0.0/go.mod h1:ab1qPbhIpdTxEkNHXyeSf5vhxWSCs/tWer42PpOxQnU=
10691069
github.com/huin/goupnp v1.3.0 h1:UvLUlWDNpoUdYzb2TCn+MuTWtcjXKSza2n6CBdQ0xXc=
10701070
github.com/huin/goupnp v1.3.0/go.mod h1:gnGPsThkYa7bFi/KWmEysQRf48l2dvR5bxr2OFckNX8=
1071-
github.com/hyperledger-labs/fabric-smart-client v0.3.1-0.20241111074600-334cc6d09cd6 h1:muVqNcNGwDkPs6L5d/KZOSy5Y/YIwWRHCi4Ox3AbSC4=
1072-
github.com/hyperledger-labs/fabric-smart-client v0.3.1-0.20241111074600-334cc6d09cd6/go.mod h1:vZLAiVznnEdHyx1OV5nIqf34apnfdhonwJL+qEYniIQ=
10731071
github.com/hyperledger-labs/fabric-smart-client v0.3.1-0.20241114072958-8bdbea854812 h1:1GGnfSHFRKfnCZtho6Ia8ZneaGsI5abKDqXsdL8hVSo=
10741072
github.com/hyperledger-labs/fabric-smart-client v0.3.1-0.20241114072958-8bdbea854812/go.mod h1:vZLAiVznnEdHyx1OV5nIqf34apnfdhonwJL+qEYniIQ=
10751073
github.com/hyperledger-labs/orion-sdk-go v0.2.10 h1:lFgWgxyvngIhWnIqymYGBmtmq9D6uC5d0uLG9cbyh5s=

Diff for: token/services/identity/msp/idemix/km_test.go

+1-4
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,6 @@ import (
1111
"strings"
1212
"testing"
1313

14-
mem "github.com/hyperledger-labs/fabric-smart-client/platform/view/services/db/driver/memory"
15-
"github.com/hyperledger-labs/fabric-token-sdk/token/services/identity/msp/idemix/msp"
16-
"github.com/hyperledger-labs/fabric-token-sdk/token/services/identity/msp/idemix/schema"
17-
1814
idemix2 "github.com/IBM/idemix"
1915
"github.com/IBM/idemix/bccsp/types"
2016
bccsp "github.com/IBM/idemix/bccsp/types"
@@ -28,6 +24,7 @@ import (
2824
kvs2 "github.com/hyperledger-labs/fabric-token-sdk/token/services/identity/kvs"
2925
"github.com/hyperledger-labs/fabric-token-sdk/token/services/identity/msp/idemix"
3026
"github.com/hyperledger-labs/fabric-token-sdk/token/services/identity/msp/idemix/msp"
27+
"github.com/hyperledger-labs/fabric-token-sdk/token/services/identity/msp/idemix/schema"
3128
"github.com/hyperledger-labs/fabric-token-sdk/token/services/identity/sig"
3229
msp2 "github.com/hyperledger/fabric/msp"
3330
"github.com/stretchr/testify/assert"

Diff for: token/services/identity/msp/idemix/kmp.go

+2-1
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ import (
1515
driver2 "github.com/hyperledger-labs/fabric-token-sdk/token/services/identity/driver"
1616
"github.com/hyperledger-labs/fabric-token-sdk/token/services/identity/msp/idemix/cache"
1717
msp2 "github.com/hyperledger-labs/fabric-token-sdk/token/services/identity/msp/idemix/msp"
18+
"github.com/hyperledger-labs/fabric-token-sdk/token/services/identity/msp/idemix/schema"
1819
"github.com/hyperledger-labs/fabric-token-sdk/token/services/logging"
1920
"github.com/hyperledger/fabric-protos-go/msp"
2021
"github.com/pkg/errors"
@@ -60,7 +61,7 @@ func (l *KeyManagerProvider) Get(identityConfig *driver.IdentityConfiguration) (
6061
if err != nil {
6162
return nil, errors.WithMessage(err, "failed to instantiate crypto provider")
6263
}
63-
provider, err := NewKeyManager(conf, l.signerService, bccsp.EidNymRhNym, cryptoProvider)
64+
provider, err := NewKeyManager(conf, l.signerService, bccsp.EidNymRhNym, cryptoProvider, &schema.DefaultManager{}, "")
6465
if err != nil {
6566
return nil, errors.Wrapf(err, "failed instantiating idemix msp provider from [%s]", identityConfig.URL)
6667
}

Diff for: token/services/identity/msp/idemix/lm.go

Whitespace-only changes.

0 commit comments

Comments
 (0)