mirror of
https://github.com/hyperledger/fabric-samples.git
synced 2026-06-22 01:25:10 +00:00
Fix certPath in assetTransfer.go
current version of network.sh does not generate cert.pem as filename Signed-off-by: thejjw <72130076+thejjw@users.noreply.github.com>
This commit is contained in:
parent
02d9f8c58b
commit
a5164eeabd
1 changed files with 1 additions and 1 deletions
|
|
@ -28,7 +28,7 @@ import (
|
||||||
const (
|
const (
|
||||||
mspID = "Org1MSP"
|
mspID = "Org1MSP"
|
||||||
cryptoPath = "../../test-network/organizations/peerOrganizations/org1.example.com"
|
cryptoPath = "../../test-network/organizations/peerOrganizations/org1.example.com"
|
||||||
certPath = cryptoPath + "/users/User1@org1.example.com/msp/signcerts/cert.pem"
|
certPath = cryptoPath + "/users/User1@org1.example.com/msp/signcerts/User1@org1.example.com-cert.pem"
|
||||||
keyPath = cryptoPath + "/users/User1@org1.example.com/msp/keystore/"
|
keyPath = cryptoPath + "/users/User1@org1.example.com/msp/keystore/"
|
||||||
tlsCertPath = cryptoPath + "/peers/peer0.org1.example.com/tls/ca.crt"
|
tlsCertPath = cryptoPath + "/peers/peer0.org1.example.com/tls/ca.crt"
|
||||||
peerEndpoint = "localhost:7051"
|
peerEndpoint = "localhost:7051"
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue