diff --git a/hyperledger_fabric/README.md b/hyperledger_fabric/README.md index 51dd193d..7f3f34c3 100644 --- a/hyperledger_fabric/README.md +++ b/hyperledger_fabric/README.md @@ -26,7 +26,10 @@ Fabric Release | Description ## Getting Started ### TLDR -RELEASE=v1.3.0 + +```bash +$ export RELEASE=v1.4.0 +``` ```bash $ cd ${RELEASE}; make setup test @@ -67,6 +70,11 @@ $ HLF_MODE=be make test # Start a blockchain-explorer to view network info See [detailed steps](docs/steps.md) +## Specify Version Numbers + +* `.env`: docker images tags, used by those docker-compose files; +* `scripts/variable.sh`: docker images tags and project versions, used by scripts; + ## Acknowledgement * [Hyperledger Fabric](https://github.com/hyperledger/fabric/) project. diff --git a/hyperledger_fabric/latest/org3/configtx.yaml b/hyperledger_fabric/latest/org3/configtx.yaml index ba86455a..fd92173e 100644 --- a/hyperledger_fabric/latest/org3/configtx.yaml +++ b/hyperledger_fabric/latest/org3/configtx.yaml @@ -18,9 +18,18 @@ Organizations: # of the fabric.git development environment Name: Org3MSP + # SkipAsForeign can be set to true for org definitions which are to be + # inherited from the orderer system channel during channel creation. This + # is especially useful when an admin of a single org without access to the + # MSP directories of the other orgs wishes to create a channel. Note + # this property must always be set to false for orgs included in block + # creation. + SkipAsForeign: false + # ID to load the MSP definition as ID: Org3MSP + # Used by configtxgen MSPDir: crypto-config/peerOrganizations/org3.example.com/msp Policies: @@ -33,6 +42,9 @@ Organizations: Admins: Type: Signature Rule: "OR('Org3MSP.admin')" + Endorsement: + Type: Signature + Rule: "OR('Org3MSP.member')" AnchorPeers: # AnchorPeers defines the location of peers which can be used diff --git a/hyperledger_fabric/latest/scripts/gen_config_channel.sh b/hyperledger_fabric/latest/scripts/gen_config_channel.sh index 22475525..797f6e40 100644 --- a/hyperledger_fabric/latest/scripts/gen_config_channel.sh +++ b/hyperledger_fabric/latest/scripts/gen_config_channel.sh @@ -1,6 +1,5 @@ #! /bin/bash # Generating -# * crypto-config/* # * channel-artifacts # * orderer.genesis.block # * channel.tx diff --git a/hyperledger_fabric/latest/scripts/variables.sh b/hyperledger_fabric/latest/scripts/variables.sh index b6656aa8..ccb0d6ad 100644 --- a/hyperledger_fabric/latest/scripts/variables.sh +++ b/hyperledger_fabric/latest/scripts/variables.sh @@ -10,6 +10,7 @@ BASE_IMG_TAG=0.4.14 # For fabric images, including peer, orderer, ca FABRIC_IMG_TAG=latest +# Can deprecate now? PROJECT_VERSION=1.4.0 # Name of app channel, need to align with the gen_artifacts.sh diff --git a/hyperledger_fabric/v1.4.0/Makefile b/hyperledger_fabric/v1.4.0/Makefile index 68da421a..6228e7ff 100644 --- a/hyperledger_fabric/v1.4.0/Makefile +++ b/hyperledger_fabric/v1.4.0/Makefile @@ -9,7 +9,7 @@ SHELL:=/bin/bash # mode of the network: solo, kafka, couchdb, event, dev HLF_MODE ?= solo -NETWORK_INIT_WAIT ?= 2 # time to wait the fabric network finish initialization +NETWORK_INIT_WAIT ?= 5 # time to wait the fabric network finish initialization COMPOSE_FILE ?= "docker-compose-2orgs-4peers-solo.yaml" @@ -35,6 +35,8 @@ all: test test: @echo "Run test with $(COMPOSE_FILE)" @echo "Please make sure u have setup Docker and pulled images by 'make setup download'." + @echo "Make sure the local hlf_net docker bridge exists" + docker network ls|grep hlf_net > /dev/null || docker network create hlf_net make ready # Run all testing till ready @@ -42,8 +44,9 @@ test: ready: # create/join channel, install/instantiate cc make stop - # make clean_config # Remove existing crypto-config, channel artifacts and org3/crypto-config. - make gen_config # Will ignore if local config path exists + # make clean_config_channel # Remove existing channel artifacts + make gen_config_crypto # Will ignore if local config path exists + make gen_config_channel # Will ignore if local config path exists make start @@ -207,13 +210,13 @@ clean: # clean up containers and chaincode images @-docker ps -a | awk '{ print $$1,$$2 }' | grep "hyperledger/fabric" | awk '{ print $$1 }' | xargs -r -I {} docker rm -f {} @-docker ps -a | awk '$$2 ~ /dev-peer/ { print $$1 }' | xargs -r -I {} docker rm -f {} @-docker images | awk '$$1 ~ /dev-peer/ { print $$3 }' | xargs -r -I {} docker rmi -f {} - echo "May clean the config: make clean_config" - -# Clean these config files including channel artifacts and credential files -clean_config: clean_channel_artifacts clean_crypto_config + echo "May clean the config: HLF_MODE=solo make clean_config_channel" # Clean deeply by removing all generated files: container, artifacts, credentials -purge: clean clean_config +purge: clean + HLF_MODE=solo make clean_config_channel + HLF_MODE=kafka make clean_config_channel + make clean_config_crypto env_clean: # clean up Docker environment @echo "Clean all images and containers" @@ -260,22 +263,25 @@ elk: # insert logs into elk # curl -XDELETE http://localhost:9200/logstash-\* nc localhost 5000 < $(LOG_PATH)/dev_all.log -gen_config: # generate config artifacts +gen_config_crypto: # generate crypto config + bash scripts/gen_config_crypto.sh + +gen_config_channel: # generate channel artifacts if [ "$(HLF_MODE)" = "kafka" ]; then \ - bash scripts/gen_config.sh kafka; \ + bash scripts/gen_config_channel.sh kafka; \ else \ - bash scripts/gen_config.sh solo; \ + bash scripts/gen_config_channel.sh solo; \ fi -clean_channel_artifacts: # clean channel related artifacts +clean_config_channel: # clean channel related artifacts if [ "$(HLF_MODE)" = "kafka" ]; then \ rm -rf kafka/channel-artifacts/*; \ else \ rm -rf solo/channel-artifacts/*; \ fi -clean_crypto_config: # clean config artifacts - echo "Warning: re-generating credentials will affect artifacts in both solo and kafka mode" +clean_config_crypto: # clean config artifacts + echo "Warning: Cleaning credentials will affect artifacts in both solo and kafka mode" rm -rf crypto-config/* rm -rf org3/crypto-config/* diff --git a/hyperledger_fabric/v1.4.0/base-solo.yaml b/hyperledger_fabric/v1.4.0/base-solo.yaml index dc6e9564..e06ec906 100644 --- a/hyperledger_fabric/v1.4.0/base-solo.yaml +++ b/hyperledger_fabric/v1.4.0/base-solo.yaml @@ -73,6 +73,7 @@ services: - CORE_PEER_CHAINCODELISTENADDRESS=peer0.org1.example.com:7052 - CORE_PEER_GOSSIP_EXTERNALENDPOINT=peer0.org1.example.com:7051 - CORE_PEER_LOCALMSPID=Org1MSP + - GOMAXPROCS=8 volumes: - ./crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/msp:/etc/hyperledger/fabric/msp - ./crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/tls:/etc/hyperledger/fabric/tls diff --git a/hyperledger_fabric/v1.4.0/examples/chaincode/go/cc02_mockTest/README.md b/hyperledger_fabric/v1.4.0/examples/chaincode/go/cc02_mockTest/README.md new file mode 100644 index 00000000..22338f1d --- /dev/null +++ b/hyperledger_fabric/v1.4.0/examples/chaincode/go/cc02_mockTest/README.md @@ -0,0 +1,23 @@ +# Debug Chaincode with MockShim +Baohua Yang, 2019-01-17 + +The package will demonstrate how to debug the chaincode with the MockShim lib. + +This way is more efficient and quick to debug locally without any fabric network setup. + +## Usage + +Unzip the package and enter the package path, then run + +```bash +# Regular testing should return OK +$ go test . + +# Debug with more logs output +$ go test -v . +``` + +## Files + +* chaincode_example02.go: example02 chaincode from HLF repo; +* cc_test.go: test code to verify the example02 chaincode logic. diff --git a/hyperledger_fabric/v1.4.0/examples/chaincode/go/cc02_mockTest/cc_test.go b/hyperledger_fabric/v1.4.0/examples/chaincode/go/cc02_mockTest/cc_test.go new file mode 100644 index 00000000..6fb11c2c --- /dev/null +++ b/hyperledger_fabric/v1.4.0/examples/chaincode/go/cc02_mockTest/cc_test.go @@ -0,0 +1,58 @@ +package main + +import ( + "strconv" + "testing" + + "github.com/hyperledger/fabric/core/chaincode/shim" +) + +// TestMockShim test the chaincode with MockShim +func TestMockShim(t *testing.T) { + var Aval int + var err error + + // Instantiate mockStub using the sample example02 chaincode + stub := shim.NewMockStub("mockStub", new(SimpleChaincode)) + if stub == nil { + t.Fatalf("MockStub creation failed") + } + + // Init with tx_uuid, args + result := stub.MockInit("000001", [][]byte{[]byte("init"), []byte("a"), []byte("100"), []byte("b"), []byte("200")}) + if result.Status != shim.OK { + t.Fatalf("Error to Init the chaincode: %+v", result) + } + + // Query the existing result + result = stub.MockInvoke("000002", [][]byte{[]byte("query"), []byte("a")}) + if result.Status != shim.OK { + t.Fatalf("Error to Invoke.query the chaincode: %+v", result) + } + Aval, err = strconv.Atoi(string(result.Payload)) + if err != nil { + t.Errorf("Expecting integer value for query result") + } + if Aval != 100 { + t.Errorf("Value is not equal to expected from query result") + } + + // Invoke to transfer + result = stub.MockInvoke("000003", [][]byte{[]byte("invoke"), []byte("a"), []byte("b"), []byte("10")}) + if result.Status != shim.OK { + t.Fatalf("Error to Invoke.invoke the chaincode: %+v", result) + } + + // Query the existing result + result = stub.MockInvoke("000004", [][]byte{[]byte("query"), []byte("a")}) + if result.Status != shim.OK { + t.Fatalf("Error to Invoke.query the chaincode: %+v", result) + } + Aval, err = strconv.Atoi(string(result.Payload)) + if err != nil { + t.Errorf("Expecting integer value for query result") + } + if Aval != 90 { + t.Errorf("Value is not equal to expected from query result") + } +} diff --git a/hyperledger_fabric/v1.4.0/examples/chaincode/go/cc02_mockTest/chaincode_example02.go b/hyperledger_fabric/v1.4.0/examples/chaincode/go/cc02_mockTest/chaincode_example02.go new file mode 100644 index 00000000..945084b1 --- /dev/null +++ b/hyperledger_fabric/v1.4.0/examples/chaincode/go/cc02_mockTest/chaincode_example02.go @@ -0,0 +1,200 @@ +/* +Copyright IBM Corp. 2016 All Rights Reserved. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + +package main + +//WARNING - this chaincode's ID is hard-coded in chaincode_example04 to illustrate one way of +//calling chaincode from a chaincode. If this example is modified, chaincode_example04.go has +//to be modified as well with the new ID of chaincode_example02. +//chaincode_example05 show's how chaincode ID can be passed in as a parameter instead of +//hard-coding. + +import ( + "fmt" + "strconv" + + "github.com/hyperledger/fabric/core/chaincode/shim" + pb "github.com/hyperledger/fabric/protos/peer" +) + +// SimpleChaincode example simple Chaincode implementation +type SimpleChaincode struct { +} + +func (t *SimpleChaincode) Init(stub shim.ChaincodeStubInterface) pb.Response { + fmt.Println("ex02 Init") + _, args := stub.GetFunctionAndParameters() + var A, B string // Entities + var Aval, Bval int // Asset holdings + var err error + + if len(args) != 4 { + fmt.Printf("args = %+v\n", args) + return shim.Error("Incorrect number of arguments. Expecting 4") + } + + // Initialize the chaincode + A = args[0] + Aval, err = strconv.Atoi(args[1]) + if err != nil { + return shim.Error("Expecting integer value for asset holding") + } + B = args[2] + Bval, err = strconv.Atoi(args[3]) + if err != nil { + return shim.Error("Expecting integer value for asset holding") + } + fmt.Printf("Aval = %d, Bval = %d\n", Aval, Bval) + + // Write the state to the ledger + err = stub.PutState(A, []byte(strconv.Itoa(Aval))) + if err != nil { + return shim.Error(err.Error()) + } + + err = stub.PutState(B, []byte(strconv.Itoa(Bval))) + if err != nil { + return shim.Error(err.Error()) + } + + return shim.Success(nil) +} + +func (t *SimpleChaincode) Invoke(stub shim.ChaincodeStubInterface) pb.Response { + fmt.Println("ex02 Invoke") + function, args := stub.GetFunctionAndParameters() + if function == "invoke" { + // Make payment of X units from A to B + return t.invoke(stub, args) + } else if function == "delete" { + // Deletes an entity from its state + return t.delete(stub, args) + } else if function == "query" { + // the old "Query" is now implemtned in invoke + return t.query(stub, args) + } + + return shim.Error("Invalid invoke function name. Expecting \"invoke\" \"delete\" \"query\"") +} + +// Transaction makes payment of X units from A to B +func (t *SimpleChaincode) invoke(stub shim.ChaincodeStubInterface, args []string) pb.Response { + var A, B string // Entities + var Aval, Bval int // Asset holdings + var X int // Transaction value + var err error + + if len(args) != 3 { + return shim.Error("Incorrect number of arguments. Expecting 3") + } + + A = args[0] + B = args[1] + + // Get the state from the ledger + // TODO: will be nice to have a GetAllState call to ledger + Avalbytes, err := stub.GetState(A) + if err != nil { + return shim.Error("Failed to get state") + } + if Avalbytes == nil { + return shim.Error("Entity not found") + } + Aval, _ = strconv.Atoi(string(Avalbytes)) + + Bvalbytes, err := stub.GetState(B) + if err != nil { + return shim.Error("Failed to get state") + } + if Bvalbytes == nil { + return shim.Error("Entity not found") + } + Bval, _ = strconv.Atoi(string(Bvalbytes)) + + // Perform the execution + X, err = strconv.Atoi(args[2]) + if err != nil { + return shim.Error("Invalid transaction amount, expecting a integer value") + } + Aval = Aval - X + Bval = Bval + X + fmt.Printf("Aval = %d, Bval = %d\n", Aval, Bval) + + // Write the state back to the ledger + err = stub.PutState(A, []byte(strconv.Itoa(Aval))) + if err != nil { + return shim.Error(err.Error()) + } + + err = stub.PutState(B, []byte(strconv.Itoa(Bval))) + if err != nil { + return shim.Error(err.Error()) + } + + return shim.Success(nil) +} + +// Deletes an entity from state +func (t *SimpleChaincode) delete(stub shim.ChaincodeStubInterface, args []string) pb.Response { + if len(args) != 1 { + return shim.Error("Incorrect number of arguments. Expecting 1") + } + + A := args[0] + + // Delete the key from the state in ledger + err := stub.DelState(A) + if err != nil { + return shim.Error("Failed to delete state") + } + + return shim.Success(nil) +} + +// query callback representing the query of a chaincode +func (t *SimpleChaincode) query(stub shim.ChaincodeStubInterface, args []string) pb.Response { + var A string // Entities + var err error + + if len(args) != 1 { + return shim.Error("Incorrect number of arguments. Expecting name of the person to query") + } + + A = args[0] + + // Get the state from the ledger + Avalbytes, err := stub.GetState(A) + if err != nil { + jsonResp := "{\"Error\":\"Failed to get state for " + A + "\"}" + return shim.Error(jsonResp) + } + + if Avalbytes == nil { + jsonResp := "{\"Error\":\"Nil amount for " + A + "\"}" + return shim.Error(jsonResp) + } + + jsonResp := "{\"Name\":\"" + A + "\",\"Amount\":\"" + string(Avalbytes) + "\"}" + fmt.Printf("Query Response:%s\n", jsonResp) + return shim.Success(Avalbytes) +} + +func main() { + err := shim.Start(new(SimpleChaincode)) + if err != nil { + fmt.Printf("Error starting Simple chaincode: %s", err) + } +} diff --git a/hyperledger_fabric/v1.4.0/scripts/gen_channelArtifacts.sh b/hyperledger_fabric/v1.4.0/scripts/gen_channelArtifacts.sh index 1f2dba89..7109934b 100644 --- a/hyperledger_fabric/v1.4.0/scripts/gen_channelArtifacts.sh +++ b/hyperledger_fabric/v1.4.0/scripts/gen_channelArtifacts.sh @@ -25,12 +25,17 @@ configtxgen \ -profile ${ORDERER_GENESIS_PROFILE} \ -outputBlock ${ORDERER_GENESIS} +[ ! -f ${ORDERER_GENESIS} ] && echo "Fail to generate genesis block for system channel" && exit -1 + echo "Create the new app channel tx using configtx.yaml" configtxgen \ -configPath /tmp \ -profile ${APP_CHANNEL_PROFILE} \ -channelID ${APP_CHANNEL} \ -outputCreateChannelTx ${APP_CHANNEL_TX} + +[ ! -f ${APP_CHANNEL_TX} ] && echo "Fail to generate app channel tx file" && exit -1 + configtxgen \ -inspectChannelCreateTx ${APP_CHANNEL_TX} > ${APP_CHANNEL_TX}.json @@ -42,6 +47,8 @@ configtxgen \ -asOrg ${ORG1MSP} \ -outputAnchorPeersUpdate ${UPDATE_ANCHOR_ORG1_TX} +[ ! -f ${UPDATE_ANCHOR_ORG1_TX} ] && echo "Fail to generate the anchor update tx for org1" && exit -1 + configtxgen \ -configPath /tmp \ -profile ${APP_CHANNEL_PROFILE} \ @@ -49,6 +56,8 @@ configtxgen \ -asOrg ${ORG2MSP} \ -outputAnchorPeersUpdate ${UPDATE_ANCHOR_ORG2_TX} +[ ! -f ${UPDATE_ANCHOR_ORG2_TX} ] && echo "Fail to generate the anchor update tx for org1" && exit -1 + echo "Output the json for org1, org2 and org3" configtxgen \ -configPath /tmp \ diff --git a/hyperledger_fabric/v1.4.0/scripts/gen_config.sh b/hyperledger_fabric/v1.4.0/scripts/gen_config.sh deleted file mode 100644 index 1a0cde0f..00000000 --- a/hyperledger_fabric/v1.4.0/scripts/gen_config.sh +++ /dev/null @@ -1,72 +0,0 @@ -#! /bin/bash -# Generating -# * crypto-config/* -# * channel-artifacts -# * orderer.genesis.block -# * channel.tx -# * Org1MSPanchors.tx -# * Org2MSPanchors.tx - -if [ -f ./func.sh ]; then - source ./func.sh -elif [ -f scripts/func.sh ]; then - source scripts/func.sh -else - echo "Cannot find the func.sh files, pls check" - exit 1 -fi - -[ $# -ne 1 ] && echo_r "[Usage] $0 solo|kafka" && exit 1 || MODE=$1 - -echo_b "Generating artifacts for ${MODE}" - -echo_b "Clean existing container $GEN_CONTAINER" -[ "$(docker ps -a | grep $GEN_CONTAINER)" ] && docker rm -f $GEN_CONTAINER - -[ ! -d ${CRYPTO_CONFIG} ] && mkdir -p ${CRYPTO_CONFIG} -[ ! -d org3/${CRYPTO_CONFIG} ] && mkdir -p org3/${CRYPTO_CONFIG} - -echo_b "Make sure crypto-config dir exists already" -if [ ! -d ${CRYPTO_CONFIG} -o -z "$(ls -A ${CRYPTO_CONFIG})" ]; then # need to re-gen crypto - echo_g "Path ${CRYPTO_CONFIG} not exists, re-generating it." - - docker run \ - --rm -it \ - --name ${GEN_CONTAINER} \ - -e "CONFIGTX_LOGGING_LEVEL=DEBUG" \ - -v $PWD/${CRYPTO_CONFIG}:/tmp/${CRYPTO_CONFIG} \ - -v $PWD/crypto-config.yaml:/tmp/crypto-config.yaml \ - -v $PWD/org3:/tmp/org3 \ - -v $PWD/scripts/gen_cryptoArtifacts.sh:/scripts/gen_cryptoArtifacts.sh \ - ${GEN_IMG} sh -c 'sleep 1; bash /scripts/gen_cryptoArtifacts.sh' - - [ $? -ne 0 ] && exit 1 -else - echo_b "${CRYPTO_CONFIG} exists, ignore." -fi - -cp -r org3/${CRYPTO_CONFIG}/* ${CRYPTO_CONFIG}/ - -[ ! -d ${MODE}/${CHANNEL_ARTIFACTS} ] && mkdir -p ${MODE}/${CHANNEL_ARTIFACTS} - -echo_b "Make sure channel-artifacts dir exists already" -if [ ! -d ${MODE}/${CHANNEL_ARTIFACTS} -o -z "$(ls -A ${MODE}/${CHANNEL_ARTIFACTS})" ]; then - echo_g "Path ${CHANNEL_ARTIFACTS} not exists, generating it." - -#TODO: no need crypto-config path - docker run \ - --rm -it \ - --name ${GEN_CONTAINER} \ - -e "CONFIGTX_LOGGING_LEVEL=DEBUG" \ - -v $PWD/${CRYPTO_CONFIG}:/tmp/${CRYPTO_CONFIG} \ - -v $PWD/${MODE}/configtx.yaml:/tmp/configtx.yaml \ - -v $PWD/${MODE}/${CHANNEL_ARTIFACTS}:/tmp/${CHANNEL_ARTIFACTS} \ - -v $PWD/org3:/tmp/org3 \ - -v $PWD/scripts/variables.sh:/scripts/variables.sh \ - -v $PWD/scripts/gen_channelArtifacts.sh:/scripts/gen_channelArtifacts.sh \ - ${GEN_IMG} sh -c 'sleep 1; bash /scripts/gen_channelArtifacts.sh' - -else - echo_b "${CHANNEL_ARTIFACTS} exists, ignore." -fi - diff --git a/hyperledger_fabric/v1.4.0/scripts/gen_config_channel.sh b/hyperledger_fabric/v1.4.0/scripts/gen_config_channel.sh new file mode 100644 index 00000000..797f6e40 --- /dev/null +++ b/hyperledger_fabric/v1.4.0/scripts/gen_config_channel.sh @@ -0,0 +1,44 @@ +#! /bin/bash +# Generating +# * channel-artifacts +# * orderer.genesis.block +# * channel.tx +# * Org1MSPanchors.tx +# * Org2MSPanchors.tx + +if [ -f ./func.sh ]; then + source ./func.sh +elif [ -f scripts/func.sh ]; then + source scripts/func.sh +else + echo "Cannot find the func.sh files, pls check" + exit 1 +fi + +[ $# -ne 1 ] && echo_r "[Usage] $0 solo|kafka" && exit 1 || MODE=$1 + +echo_b "Generating channel artifacts with ${GEN_IMG} in mode ${MODE}" + +[ ! -d ${MODE}/${CHANNEL_ARTIFACTS} ] && mkdir -p ${MODE}/${CHANNEL_ARTIFACTS} + +echo_b "Make sure channel-artifacts dir exists already" +if [ -d ${MODE}/${CHANNEL_ARTIFACTS} -a ! -z "$(ls -A ${MODE}/${CHANNEL_ARTIFACTS})" ]; then + echo_b "${CHANNEL_ARTIFACTS} exists, ignore." + exit 0 +fi + +echo_g "Generating ${CHANNEL_ARTIFACTS}..." +docker run \ + --rm -it \ + --name ${GEN_CONTAINER} \ + -e "FABRIC_LOGGING_SPEC=common.tools.configtxgen=DEBUG:INFO" \ + -v $PWD/${CRYPTO_CONFIG}:/tmp/${CRYPTO_CONFIG} \ + -v $PWD/${MODE}/configtx.yaml:/tmp/configtx.yaml \ + -v $PWD/${MODE}/${CHANNEL_ARTIFACTS}:/tmp/${CHANNEL_ARTIFACTS} \ + -v $PWD/org3:/tmp/org3 \ + -v $PWD/scripts/variables.sh:/scripts/variables.sh \ + -v $PWD/scripts/gen_channelArtifacts.sh:/scripts/gen_channelArtifacts.sh \ + ${GEN_IMG} sh -c 'sleep 1; bash /scripts/gen_channelArtifacts.sh' +[ $? -ne 0 ] && exit 1 + +echo_g "Generate channel artifacts with $0 done" diff --git a/hyperledger_fabric/v1.4.0/scripts/gen_config_crypto.sh b/hyperledger_fabric/v1.4.0/scripts/gen_config_crypto.sh new file mode 100644 index 00000000..076b720b --- /dev/null +++ b/hyperledger_fabric/v1.4.0/scripts/gen_config_crypto.sh @@ -0,0 +1,41 @@ +#! /bin/bash +# Generating +# * crypto-config/* + +if [ -f ./func.sh ]; then + source ./func.sh +elif [ -f scripts/func.sh ]; then + source scripts/func.sh +else + echo "Cannot find the func.sh files, pls check" + exit 1 +fi + +echo_b "Clean existing container $GEN_CONTAINER" +[ "$(docker ps -a | grep $GEN_CONTAINER)" ] && docker rm -f $GEN_CONTAINER + +[ ! -d ${CRYPTO_CONFIG} ] && mkdir -p ${CRYPTO_CONFIG} +[ ! -d org3/${CRYPTO_CONFIG} ] && mkdir -p org3/${CRYPTO_CONFIG} + +echo_b "Make sure crypto-config dir exists already" +if [ -d ${CRYPTO_CONFIG} -a ! -z "$(ls -A ${CRYPTO_CONFIG})" ]; then # No need to regen + echo_b "${CRYPTO_CONFIG} exists, ignore." + exit 0 +fi + +echo_g "Generating ${CRYPTO_CONFIG}..." +docker run \ + --rm -it \ + --name ${GEN_CONTAINER} \ + -e "CONFIGTX_LOGGING_LEVEL=DEBUG" \ + -v $PWD/${CRYPTO_CONFIG}:/tmp/${CRYPTO_CONFIG} \ + -v $PWD/crypto-config.yaml:/tmp/crypto-config.yaml \ + -v $PWD/org3:/tmp/org3 \ + -v $PWD/scripts/gen_cryptoArtifacts.sh:/scripts/gen_cryptoArtifacts.sh \ + ${GEN_IMG} sh -c 'sleep 1; bash /scripts/gen_cryptoArtifacts.sh' +[ $? -ne 0 ] && exit 1 + +echo_b "Copy org3's crypto config outside" +cp -r org3/${CRYPTO_CONFIG}/* ${CRYPTO_CONFIG}/ + +echo_g "Generate crypto configs with $0 done" \ No newline at end of file diff --git a/hyperledger_fabric/v1.4.0/solo/channel-artifacts/businesschannel_0.block b/hyperledger_fabric/v1.4.0/solo/channel-artifacts/businesschannel_0.block index bd24b3fe..197e597e 100644 Binary files a/hyperledger_fabric/v1.4.0/solo/channel-artifacts/businesschannel_0.block and b/hyperledger_fabric/v1.4.0/solo/channel-artifacts/businesschannel_0.block differ diff --git a/hyperledger_fabric/v1.4.0/solo/channel-artifacts/businesschannel_1.block b/hyperledger_fabric/v1.4.0/solo/channel-artifacts/businesschannel_1.block index 767ebe15..03cf1289 100644 Binary files a/hyperledger_fabric/v1.4.0/solo/channel-artifacts/businesschannel_1.block and b/hyperledger_fabric/v1.4.0/solo/channel-artifacts/businesschannel_1.block differ diff --git a/hyperledger_fabric/v1.4.0/solo/channel-artifacts/businesschannel_2.block b/hyperledger_fabric/v1.4.0/solo/channel-artifacts/businesschannel_2.block index 5edbd958..9afcffd5 100644 Binary files a/hyperledger_fabric/v1.4.0/solo/channel-artifacts/businesschannel_2.block and b/hyperledger_fabric/v1.4.0/solo/channel-artifacts/businesschannel_2.block differ diff --git a/hyperledger_fabric/v1.4.0/solo/channel-artifacts/businesschannel_3.block b/hyperledger_fabric/v1.4.0/solo/channel-artifacts/businesschannel_3.block index 81451158..c8950b62 100644 Binary files a/hyperledger_fabric/v1.4.0/solo/channel-artifacts/businesschannel_3.block and b/hyperledger_fabric/v1.4.0/solo/channel-artifacts/businesschannel_3.block differ diff --git a/hyperledger_fabric/v1.4.0/solo/channel-artifacts/businesschannel_4.block b/hyperledger_fabric/v1.4.0/solo/channel-artifacts/businesschannel_4.block index ed7e5420..0273d96b 100644 Binary files a/hyperledger_fabric/v1.4.0/solo/channel-artifacts/businesschannel_4.block and b/hyperledger_fabric/v1.4.0/solo/channel-artifacts/businesschannel_4.block differ diff --git a/hyperledger_fabric/v1.4.0/solo/channel-artifacts/businesschannel_5.block b/hyperledger_fabric/v1.4.0/solo/channel-artifacts/businesschannel_5.block index f238075d..7181bd96 100644 Binary files a/hyperledger_fabric/v1.4.0/solo/channel-artifacts/businesschannel_5.block and b/hyperledger_fabric/v1.4.0/solo/channel-artifacts/businesschannel_5.block differ diff --git a/hyperledger_fabric/v1.4.0/solo/channel-artifacts/businesschannel_6.block b/hyperledger_fabric/v1.4.0/solo/channel-artifacts/businesschannel_6.block index e9f6d93a..5ae3884a 100644 Binary files a/hyperledger_fabric/v1.4.0/solo/channel-artifacts/businesschannel_6.block and b/hyperledger_fabric/v1.4.0/solo/channel-artifacts/businesschannel_6.block differ diff --git a/hyperledger_fabric/v1.4.0/solo/channel-artifacts/businesschannel_config.block b/hyperledger_fabric/v1.4.0/solo/channel-artifacts/businesschannel_config.block index e9f6d93a..5ae3884a 100644 Binary files a/hyperledger_fabric/v1.4.0/solo/channel-artifacts/businesschannel_config.block and b/hyperledger_fabric/v1.4.0/solo/channel-artifacts/businesschannel_config.block differ diff --git a/hyperledger_fabric/v1.4.0/solo/channel-artifacts/businesschannel_config.block.json b/hyperledger_fabric/v1.4.0/solo/channel-artifacts/businesschannel_config.block.json index 779ebd31..7f8a1dfb 100644 --- a/hyperledger_fabric/v1.4.0/solo/channel-artifacts/businesschannel_config.block.json +++ b/hyperledger_fabric/v1.4.0/solo/channel-artifacts/businesschannel_config.block.json @@ -823,13 +823,13 @@ }, "signatures": [ { - "signature": "MEUCIQDJyDo10O2t8CiMjpdS8xAmIXicvAjyK4j5rdL6t16RoQIgH0UCckbPl+6X/jBQxG3SGuhi5VsU3UfovMt6iNUNwNQ=", + "signature": "MEUCIQCYTN8OJVgSjVpzYzXKVc5L8qoZO8Ffv58nuZEMYJpTEAIgQHhLntscc2myPL5TxIHWqAUPAqVcR2se8ZgUTG8tLC4=", "signature_header": { "creator": { "id_bytes": "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNLakNDQWRDZ0F3SUJBZ0lRQVhwNnBiWXZYT1ExOU85NzQ5UEVKakFLQmdncWhrak9QUVFEQWpCek1Rc3cKQ1FZRFZRUUdFd0pWVXpFVE1CRUdBMVVFQ0JNS1EyRnNhV1p2Y201cFlURVdNQlFHQTFVRUJ4TU5VMkZ1SUVaeQpZVzVqYVhOamJ6RVpNQmNHQTFVRUNoTVFiM0puTWk1bGVHRnRjR3hsTG1OdmJURWNNQm9HQTFVRUF4TVRZMkV1CmIzSm5NaTVsZUdGdGNHeGxMbU52YlRBZUZ3MHhPREV5TVRrd09EQTJNREJhRncweU9ERXlNVFl3T0RBMk1EQmEKTUd3eEN6QUpCZ05WQkFZVEFsVlRNUk13RVFZRFZRUUlFd3BEWVd4cFptOXlibWxoTVJZd0ZBWURWUVFIRXcxVApZVzRnUm5KaGJtTnBjMk52TVE4d0RRWURWUVFMRXdaamJHbGxiblF4SHpBZEJnTlZCQU1NRmtGa2JXbHVRRzl5Clp6SXVaWGhoYlhCc1pTNWpiMjB3V1RBVEJnY3Foa2pPUFFJQkJnZ3Foa2pPUFFNQkJ3TkNBQVFmT2MxWlFxL0sKOEVqa1VwemVwTTJzVFAwSHhQUVk1a1Fnd1g0ZDk1Yk05UGVTblRQclB1QU1ZcHpxTUlkL3MxUXBHV01Wa1czMApzQXp5SHJPbW0yZDNvMDB3U3pBT0JnTlZIUThCQWY4RUJBTUNCNEF3REFZRFZSMFRBUUgvQkFJd0FEQXJCZ05WCkhTTUVKREFpZ0NCV1ZnOFNuT1o5aUNJbzNPcXR0UUoweGR0bXNhaXFsdmtCYXRMYmFMM1lnekFLQmdncWhrak8KUFFRREFnTklBREJGQWlFQXkxcjNmaVR6aDhWNjJrTklCMmc1WCtaNkxub0NKdzV1MzZrSVM2MG1FQVlDSUV3OApDSWZXMlNvYXptRFR4NmRZVHl0b2I0cE52aUl6a0loRHpkVUFmV0c0Ci0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0K", "mspid": "Org2MSP" }, - "nonce": "1/qZ2sOSZvZXOIozlG7iqfpoebHmcG8Z" + "nonce": "HE6ZAv8OZ+ccFnFlHVI0M9nqW0EnyPVc" } } ] @@ -839,7 +839,7 @@ "channel_id": "businesschannel", "epoch": "0", "extension": null, - "timestamp": "2019-01-09T08:56:57Z", + "timestamp": "2019-03-12T01:56:27Z", "tls_cert_hash": null, "tx_id": "", "type": 2, @@ -850,11 +850,11 @@ "id_bytes": "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNLakNDQWRDZ0F3SUJBZ0lRQVhwNnBiWXZYT1ExOU85NzQ5UEVKakFLQmdncWhrak9QUVFEQWpCek1Rc3cKQ1FZRFZRUUdFd0pWVXpFVE1CRUdBMVVFQ0JNS1EyRnNhV1p2Y201cFlURVdNQlFHQTFVRUJ4TU5VMkZ1SUVaeQpZVzVqYVhOamJ6RVpNQmNHQTFVRUNoTVFiM0puTWk1bGVHRnRjR3hsTG1OdmJURWNNQm9HQTFVRUF4TVRZMkV1CmIzSm5NaTVsZUdGdGNHeGxMbU52YlRBZUZ3MHhPREV5TVRrd09EQTJNREJhRncweU9ERXlNVFl3T0RBMk1EQmEKTUd3eEN6QUpCZ05WQkFZVEFsVlRNUk13RVFZRFZRUUlFd3BEWVd4cFptOXlibWxoTVJZd0ZBWURWUVFIRXcxVApZVzRnUm5KaGJtTnBjMk52TVE4d0RRWURWUVFMRXdaamJHbGxiblF4SHpBZEJnTlZCQU1NRmtGa2JXbHVRRzl5Clp6SXVaWGhoYlhCc1pTNWpiMjB3V1RBVEJnY3Foa2pPUFFJQkJnZ3Foa2pPUFFNQkJ3TkNBQVFmT2MxWlFxL0sKOEVqa1VwemVwTTJzVFAwSHhQUVk1a1Fnd1g0ZDk1Yk05UGVTblRQclB1QU1ZcHpxTUlkL3MxUXBHV01Wa1czMApzQXp5SHJPbW0yZDNvMDB3U3pBT0JnTlZIUThCQWY4RUJBTUNCNEF3REFZRFZSMFRBUUgvQkFJd0FEQXJCZ05WCkhTTUVKREFpZ0NCV1ZnOFNuT1o5aUNJbzNPcXR0UUoweGR0bXNhaXFsdmtCYXRMYmFMM1lnekFLQmdncWhrak8KUFFRREFnTklBREJGQWlFQXkxcjNmaVR6aDhWNjJrTklCMmc1WCtaNkxub0NKdzV1MzZrSVM2MG1FQVlDSUV3OApDSWZXMlNvYXptRFR4NmRZVHl0b2I0cE52aUl6a0loRHpkVUFmV0c0Ci0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0K", "mspid": "Org2MSP" }, - "nonce": "LB+BRvhfGsEbyiZ1RAg6oBZ2rhtnTDem" + "nonce": "bzX2HyFYRAsW+Hw9Ew4uWf6iXxrzrg5k" } } }, - "signature": "MEQCIA+GOM+q4a9oCKYtH7iGy920HAfYoiqj6mDopUgMpociAiBj4S7k5sr1fjC6y+Zea0DGSpSHbgV2GuBe3UIDkwBbhA==" + "signature": "MEQCIAZIp2AXcsmwOjDNciOWw5cvf/8O3B4unFYgmqWiRk7LAiBu2CDtNT8m66b3dogQGJi6hTy9FuI55T5ISewuckidOw==" } }, "header": { @@ -862,7 +862,7 @@ "channel_id": "businesschannel", "epoch": "0", "extension": null, - "timestamp": "2019-01-09T08:56:57Z", + "timestamp": "2019-03-12T01:56:27Z", "tls_cert_hash": null, "tx_id": "", "type": 1, @@ -873,23 +873,23 @@ "id_bytes": "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNEVENDQWJTZ0F3SUJBZ0lSQUp6ZzE3bXlLSm42K1ZyUlhwaTdsalF3Q2dZSUtvWkl6ajBFQXdJd2FURUwKTUFrR0ExVUVCaE1DVlZNeEV6QVJCZ05WQkFnVENrTmhiR2xtYjNKdWFXRXhGakFVQmdOVkJBY1REVk5oYmlCRwpjbUZ1WTJselkyOHhGREFTQmdOVkJBb1RDMlY0WVcxd2JHVXVZMjl0TVJjd0ZRWURWUVFERXc1allTNWxlR0Z0CmNHeGxMbU52YlRBZUZ3MHhPREV5TVRrd09EQTJNREJhRncweU9ERXlNVFl3T0RBMk1EQmFNRmt4Q3pBSkJnTlYKQkFZVEFsVlRNUk13RVFZRFZRUUlFd3BEWVd4cFptOXlibWxoTVJZd0ZBWURWUVFIRXcxVFlXNGdSbkpoYm1OcApjMk52TVIwd0d3WURWUVFERXhSdmNtUmxjbVZ5TUM1bGVHRnRjR3hsTG1OdmJUQlpNQk1HQnlxR1NNNDlBZ0VHCkNDcUdTTTQ5QXdFSEEwSUFCQVN5UUUwY0l3MFNGMzVkSjE5QlpUa1JPQnVBdksrL096Vy9lRE9mWHdmRDVSR3YKd2dyMld0VXBKaURMOU1wRjZTTENqT1Q0RFMvMlJPem1GUVpWMWdTalRUQkxNQTRHQTFVZER3RUIvd1FFQXdJSApnREFNQmdOVkhSTUJBZjhFQWpBQU1Dc0dBMVVkSXdRa01DS0FJRU9lOEErQk83Z3prWVVpd0hMYTJuV2dSK3J1CjBTZ2lBcm91cWVnclkrSm9NQW9HQ0NxR1NNNDlCQU1DQTBjQU1FUUNJR1AxNEk1ejVLZ0kwZVJjc2MyQjlVUHIKNnMyc2NFYWZQRWdEbTZuZUhSNmhBaUJOdU9MOUtad1ZQYlBHdVZrU1U5d1B6bVVwOGdvQzhIR28zaTF3V0ZCaAo0UT09Ci0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0K", "mspid": "OrdererMSP" }, - "nonce": "0kA4nb0znnBi35VKBdR60HgSRUMzgp3s" + "nonce": "ePW4PP2W94NkovjppaeMESAAEnENa5+8" } } }, - "signature": "MEQCIBZ9T7FzQb24GbIytDukYSaP4pYr+G0yJzTRaO4JgCVaAiAMrWI73IjFARsT5E2vwV6pzjV1By9BV7wmIIe7PWy6KQ==" + "signature": "MEUCIQCueR04OPR333M6aCtCeqsMCuCkaRvWsGa1qHM/aBedKAIgK/8KyDcFHSYrTcvpBQqVISkIEgPACuh80J6HyZmDMjg=" } ] }, "header": { - "data_hash": "mspN+NaVyRsp5+1u7ClY+CoBvihGrMzIApbnguAGRSA=", + "data_hash": "jMjcHBXje3XRrHg4GDOnw0mcsKvbkzEcxLwsZi7e0Pw=", "number": "2", - "previous_hash": "b4pTE18u/1OiDQUOAIBTDMrFGtgDE5eDWpP2eluh1Hc=" + "previous_hash": "uFpZSzVOSfW6+V4N3cUOLk+DRtVxuJu/x+K+3AYIBxE=" }, "metadata": { "metadata": [ - "Ev0GCrIGCpUGCgpPcmRlcmVyTVNQEoYGLS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNEVENDQWJTZ0F3SUJBZ0lSQUp6ZzE3bXlLSm42K1ZyUlhwaTdsalF3Q2dZSUtvWkl6ajBFQXdJd2FURUwKTUFrR0ExVUVCaE1DVlZNeEV6QVJCZ05WQkFnVENrTmhiR2xtYjNKdWFXRXhGakFVQmdOVkJBY1REVk5oYmlCRwpjbUZ1WTJselkyOHhGREFTQmdOVkJBb1RDMlY0WVcxd2JHVXVZMjl0TVJjd0ZRWURWUVFERXc1allTNWxlR0Z0CmNHeGxMbU52YlRBZUZ3MHhPREV5TVRrd09EQTJNREJhRncweU9ERXlNVFl3T0RBMk1EQmFNRmt4Q3pBSkJnTlYKQkFZVEFsVlRNUk13RVFZRFZRUUlFd3BEWVd4cFptOXlibWxoTVJZd0ZBWURWUVFIRXcxVFlXNGdSbkpoYm1OcApjMk52TVIwd0d3WURWUVFERXhSdmNtUmxjbVZ5TUM1bGVHRnRjR3hsTG1OdmJUQlpNQk1HQnlxR1NNNDlBZ0VHCkNDcUdTTTQ5QXdFSEEwSUFCQVN5UUUwY0l3MFNGMzVkSjE5QlpUa1JPQnVBdksrL096Vy9lRE9mWHdmRDVSR3YKd2dyMld0VXBKaURMOU1wRjZTTENqT1Q0RFMvMlJPem1GUVpWMWdTalRUQkxNQTRHQTFVZER3RUIvd1FFQXdJSApnREFNQmdOVkhSTUJBZjhFQWpBQU1Dc0dBMVVkSXdRa01DS0FJRU9lOEErQk83Z3prWVVpd0hMYTJuV2dSK3J1CjBTZ2lBcm91cWVnclkrSm9NQW9HQ0NxR1NNNDlCQU1DQTBjQU1FUUNJR1AxNEk1ejVLZ0kwZVJjc2MyQjlVUHIKNnMyc2NFYWZQRWdEbTZuZUhSNmhBaUJOdU9MOUtad1ZQYlBHdVZrU1U5d1B6bVVwOGdvQzhIR28zaTF3V0ZCaAo0UT09Ci0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0KEhjjoNG9qkitfT0kGv5gvLP79f+GuC4X7rcSRjBEAiA9JfDq2OjvkOs+Mf7TnmMlPXcD0mSPr1XbhXHY/OrKgQIgSxIA4OnunjIwP1gEQwEyhNOR9cBFhPgynWuVHnksWPQ=", - "CgIIAhL9BgqyBgqVBgoKT3JkZXJlck1TUBKGBi0tLS0tQkVHSU4gQ0VSVElGSUNBVEUtLS0tLQpNSUlDRFRDQ0FiU2dBd0lCQWdJUkFKemcxN215S0puNitWclJYcGk3bGpRd0NnWUlLb1pJemowRUF3SXdhVEVMCk1Ba0dBMVVFQmhNQ1ZWTXhFekFSQmdOVkJBZ1RDa05oYkdsbWIzSnVhV0V4RmpBVUJnTlZCQWNURFZOaGJpQkcKY21GdVkybHpZMjh4RkRBU0JnTlZCQW9UQzJWNFlXMXdiR1V1WTI5dE1SY3dGUVlEVlFRREV3NWpZUzVsZUdGdApjR3hsTG1OdmJUQWVGdzB4T0RFeU1Ua3dPREEyTURCYUZ3MHlPREV5TVRZd09EQTJNREJhTUZreEN6QUpCZ05WCkJBWVRBbFZUTVJNd0VRWURWUVFJRXdwRFlXeHBabTl5Ym1saE1SWXdGQVlEVlFRSEV3MVRZVzRnUm5KaGJtTnAKYzJOdk1SMHdHd1lEVlFRREV4UnZjbVJsY21WeU1DNWxlR0Z0Y0d4bExtTnZiVEJaTUJNR0J5cUdTTTQ5QWdFRwpDQ3FHU000OUF3RUhBMElBQkFTeVFFMGNJdzBTRjM1ZEoxOUJaVGtST0J1QXZLKy9PelcvZURPZlh3ZkQ1Ukd2CndncjJXdFVwSmlETDlNcEY2U0xDak9UNERTLzJST3ptRlFaVjFnU2pUVEJMTUE0R0ExVWREd0VCL3dRRUF3SUgKZ0RBTUJnTlZIUk1CQWY4RUFqQUFNQ3NHQTFVZEl3UWtNQ0tBSUVPZThBK0JPN2d6a1lVaXdITGEybldnUitydQowU2dpQXJvdXFlZ3JZK0pvTUFvR0NDcUdTTTQ5QkFNQ0EwY0FNRVFDSUdQMTRJNXo1S2dJMGVSY3NjMkI5VVByCjZzMnNjRWFmUEVnRG02bmVIUjZoQWlCTnVPTDlLWndWUGJQR3VWa1NVOXdQem1VcDhnb0M4SEdvM2kxd1dGQmgKNFE9PQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tChIYq4nOwwpCNoGsaJOt5bHkCmNAsCfimGEgEkYwRAIgLksh1wJCKBTZrqaNF+KPynX1tLLqOFEoTqCdtQrp/eoCIDhHxpUe0MpG8j1TsPmaVcYXq46UmmnTWFQtzO1iSVEP", + "Ev0GCrIGCpUGCgpPcmRlcmVyTVNQEoYGLS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNEVENDQWJTZ0F3SUJBZ0lSQUp6ZzE3bXlLSm42K1ZyUlhwaTdsalF3Q2dZSUtvWkl6ajBFQXdJd2FURUwKTUFrR0ExVUVCaE1DVlZNeEV6QVJCZ05WQkFnVENrTmhiR2xtYjNKdWFXRXhGakFVQmdOVkJBY1REVk5oYmlCRwpjbUZ1WTJselkyOHhGREFTQmdOVkJBb1RDMlY0WVcxd2JHVXVZMjl0TVJjd0ZRWURWUVFERXc1allTNWxlR0Z0CmNHeGxMbU52YlRBZUZ3MHhPREV5TVRrd09EQTJNREJhRncweU9ERXlNVFl3T0RBMk1EQmFNRmt4Q3pBSkJnTlYKQkFZVEFsVlRNUk13RVFZRFZRUUlFd3BEWVd4cFptOXlibWxoTVJZd0ZBWURWUVFIRXcxVFlXNGdSbkpoYm1OcApjMk52TVIwd0d3WURWUVFERXhSdmNtUmxjbVZ5TUM1bGVHRnRjR3hsTG1OdmJUQlpNQk1HQnlxR1NNNDlBZ0VHCkNDcUdTTTQ5QXdFSEEwSUFCQVN5UUUwY0l3MFNGMzVkSjE5QlpUa1JPQnVBdksrL096Vy9lRE9mWHdmRDVSR3YKd2dyMld0VXBKaURMOU1wRjZTTENqT1Q0RFMvMlJPem1GUVpWMWdTalRUQkxNQTRHQTFVZER3RUIvd1FFQXdJSApnREFNQmdOVkhSTUJBZjhFQWpBQU1Dc0dBMVVkSXdRa01DS0FJRU9lOEErQk83Z3prWVVpd0hMYTJuV2dSK3J1CjBTZ2lBcm91cWVnclkrSm9NQW9HQ0NxR1NNNDlCQU1DQTBjQU1FUUNJR1AxNEk1ejVLZ0kwZVJjc2MyQjlVUHIKNnMyc2NFYWZQRWdEbTZuZUhSNmhBaUJOdU9MOUtad1ZQYlBHdVZrU1U5d1B6bVVwOGdvQzhIR28zaTF3V0ZCaAo0UT09Ci0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0KEhgufGdwqRE9XOhLUDUVQO3ttAYgnmxHLwoSRjBEAiBnN1fIoJhU0UeC6Vjw2V/lWejnpoKGdNbCWTjue3eq9wIgalZSCjIeNuUiUhsUicbPqYlJyNbQmFjq+rAI0JtHzVs=", + "CgIIAhL+BgqyBgqVBgoKT3JkZXJlck1TUBKGBi0tLS0tQkVHSU4gQ0VSVElGSUNBVEUtLS0tLQpNSUlDRFRDQ0FiU2dBd0lCQWdJUkFKemcxN215S0puNitWclJYcGk3bGpRd0NnWUlLb1pJemowRUF3SXdhVEVMCk1Ba0dBMVVFQmhNQ1ZWTXhFekFSQmdOVkJBZ1RDa05oYkdsbWIzSnVhV0V4RmpBVUJnTlZCQWNURFZOaGJpQkcKY21GdVkybHpZMjh4RkRBU0JnTlZCQW9UQzJWNFlXMXdiR1V1WTI5dE1SY3dGUVlEVlFRREV3NWpZUzVsZUdGdApjR3hsTG1OdmJUQWVGdzB4T0RFeU1Ua3dPREEyTURCYUZ3MHlPREV5TVRZd09EQTJNREJhTUZreEN6QUpCZ05WCkJBWVRBbFZUTVJNd0VRWURWUVFJRXdwRFlXeHBabTl5Ym1saE1SWXdGQVlEVlFRSEV3MVRZVzRnUm5KaGJtTnAKYzJOdk1SMHdHd1lEVlFRREV4UnZjbVJsY21WeU1DNWxlR0Z0Y0d4bExtTnZiVEJaTUJNR0J5cUdTTTQ5QWdFRwpDQ3FHU000OUF3RUhBMElBQkFTeVFFMGNJdzBTRjM1ZEoxOUJaVGtST0J1QXZLKy9PelcvZURPZlh3ZkQ1Ukd2CndncjJXdFVwSmlETDlNcEY2U0xDak9UNERTLzJST3ptRlFaVjFnU2pUVEJMTUE0R0ExVWREd0VCL3dRRUF3SUgKZ0RBTUJnTlZIUk1CQWY4RUFqQUFNQ3NHQTFVZEl3UWtNQ0tBSUVPZThBK0JPN2d6a1lVaXdITGEybldnUitydQowU2dpQXJvdXFlZ3JZK0pvTUFvR0NDcUdTTTQ5QkFNQ0EwY0FNRVFDSUdQMTRJNXo1S2dJMGVSY3NjMkI5VVByCjZzMnNjRWFmUEVnRG02bmVIUjZoQWlCTnVPTDlLWndWUGJQR3VWa1NVOXdQem1VcDhnb0M4SEdvM2kxd1dGQmgKNFE9PQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tChIYKhfdy5sUxK4jGffuau3UzHUJ0c1v2y9yEkcwRQIhAKtQOZa9TQ6JJZltZAKVomRqUomeIzn5A2xjivMcmLgUAiBkFkh+oUCXHj5QKQlR4zx/NJwl9MHXyPCFN92aFH31pQ==", "", "" ] diff --git a/hyperledger_fabric/v1.4.0/solo/channel-artifacts/config_delta.pb b/hyperledger_fabric/v1.4.0/solo/channel-artifacts/config_delta.pb index 5c439974..af5d0fe9 100644 Binary files a/hyperledger_fabric/v1.4.0/solo/channel-artifacts/config_delta.pb and b/hyperledger_fabric/v1.4.0/solo/channel-artifacts/config_delta.pb differ diff --git a/hyperledger_fabric/v1.4.0/solo/channel-artifacts/config_delta_env.pb b/hyperledger_fabric/v1.4.0/solo/channel-artifacts/config_delta_env.pb index e779b5ae..6f6cb95a 100644 Binary files a/hyperledger_fabric/v1.4.0/solo/channel-artifacts/config_delta_env.pb and b/hyperledger_fabric/v1.4.0/solo/channel-artifacts/config_delta_env.pb differ diff --git a/hyperledger_fabric/v1.4.0/solo/channel-artifacts/original_config.pb b/hyperledger_fabric/v1.4.0/solo/channel-artifacts/original_config.pb index 0cbc024c..8ad96b07 100644 Binary files a/hyperledger_fabric/v1.4.0/solo/channel-artifacts/original_config.pb and b/hyperledger_fabric/v1.4.0/solo/channel-artifacts/original_config.pb differ diff --git a/hyperledger_fabric/v1.4.0/solo/channel-artifacts/testchainid_1.block b/hyperledger_fabric/v1.4.0/solo/channel-artifacts/testchainid_1.block index d6d8e8dd..682dcc91 100644 Binary files a/hyperledger_fabric/v1.4.0/solo/channel-artifacts/testchainid_1.block and b/hyperledger_fabric/v1.4.0/solo/channel-artifacts/testchainid_1.block differ diff --git a/hyperledger_fabric/v1.4.0/solo/channel-artifacts/updated_config.pb b/hyperledger_fabric/v1.4.0/solo/channel-artifacts/updated_config.pb index a58f3400..6b82573e 100644 Binary files a/hyperledger_fabric/v1.4.0/solo/channel-artifacts/updated_config.pb and b/hyperledger_fabric/v1.4.0/solo/channel-artifacts/updated_config.pb differ diff --git a/hyperledger_fabric/v1.4.0/solo/logs/dev_all.log b/hyperledger_fabric/v1.4.0/solo/logs/dev_all.log index a38b32ea..e0276a77 100644 --- a/hyperledger_fabric/v1.4.0/solo/logs/dev_all.log +++ b/hyperledger_fabric/v1.4.0/solo/logs/dev_all.log @@ -1,773 +1,779 @@ -Attaching to prometheus, peer0.org1.example.com, peer1.org2.example.com, peer1.org1.example.com, peer0.org2.example.com, orderer0.example.com, fabric-cli -peer0.org1.example.com | [001 01-09 08:56:43.71 UTC] [%{longpkg}] %{callpath} -> INFO Starting peer: -peer0.org1.example.com | Version: 1.4.0-rc1 +Attaching to prometheus, peer0.org1.example.com, peer0.org2.example.com, peer1.org1.example.com, peer1.org2.example.com, fabric-cli, orderer0.example.com +peer1.org2.example.com | [001 03-12 01:56:11.30 UTC] [%{longpkg}] %{callpath} -> INFO Starting peer: +peer1.org2.example.com | Version: 1.4.0 +peer1.org2.example.com | Commit SHA: development build +peer1.org2.example.com | Go version: go1.11.4 +peer1.org2.example.com | OS/Arch: linux/amd64 +peer1.org2.example.com | Chaincode: +peer1.org2.example.com | Base Image Version: 0.4.14 +peer1.org2.example.com | Base Docker Namespace: hyperledger +peer1.org2.example.com | Base Docker Label: org.hyperledger.fabric +peer1.org2.example.com | Docker Namespace: hyperledger +peer1.org2.example.com | [002 03-12 01:56:11.30 UTC] [%{longpkg}] %{callpath} -> INFO Initializing ledger mgmt +peer1.org2.example.com | [003 03-12 01:56:11.30 UTC] [%{longpkg}] %{callpath} -> INFO Initializing ledger provider +peer1.org2.example.com | [004 03-12 01:56:11.37 UTC] [%{longpkg}] %{callpath} -> INFO ledger provider Initialized +peer1.org2.example.com | [005 03-12 01:56:11.44 UTC] [%{longpkg}] %{callpath} -> INFO ledger mgmt initialized +peer1.org2.example.com | [006 03-12 01:56:11.44 UTC] [%{longpkg}] %{callpath} -> INFO Auto-detected peer address: 172.28.0.4:7051 +peer1.org2.example.com | [007 03-12 01:56:11.44 UTC] [%{longpkg}] %{callpath} -> INFO Returning peer1.org2.example.com:7051 +peer1.org2.example.com | [008 03-12 01:56:11.45 UTC] [%{longpkg}] %{callpath} -> INFO Auto-detected peer address: 172.28.0.4:7051 +peer1.org2.example.com | [009 03-12 01:56:11.45 UTC] [%{longpkg}] %{callpath} -> INFO Returning peer1.org2.example.com:7051 +peer1.org2.example.com | [00a 03-12 01:56:11.47 UTC] [%{longpkg}] %{callpath} -> INFO Starting peer with TLS enabled +peer1.org2.example.com | [00b 03-12 01:56:11.51 UTC] [%{longpkg}] %{callpath} -> INFO Entering computeChaincodeEndpoint with peerHostname: peer1.org2.example.com +peer1.org2.example.com | [00c 03-12 01:56:11.51 UTC] [%{longpkg}] %{callpath} -> INFO Exit with ccEndpoint: peer1.org2.example.com:7052 +peer1.org2.example.com | [00d 03-12 01:56:11.55 UTC] [%{longpkg}] %{callpath} -> INFO system chaincode lscc(github.com/hyperledger/fabric/core/scc/lscc) registered +peer1.org2.example.com | [00e 03-12 01:56:11.55 UTC] [%{longpkg}] %{callpath} -> INFO system chaincode cscc(github.com/hyperledger/fabric/core/scc/cscc) registered +peer1.org2.example.com | [00f 03-12 01:56:11.55 UTC] [%{longpkg}] %{callpath} -> INFO system chaincode qscc(github.com/hyperledger/fabric/core/scc/qscc) registered +peer1.org2.example.com | [010 03-12 01:56:11.55 UTC] [%{longpkg}] %{callpath} -> INFO system chaincode (+lifecycle,github.com/hyperledger/fabric/core/chaincode/lifecycle,true) disabled +peer1.org2.example.com | [011 03-12 01:56:11.58 UTC] [%{longpkg}] %{callpath} -> INFO Initialize gossip with endpoint peer1.org2.example.com:7051 and bootstrap set [peer0.org2.example.com:7051] +peer1.org2.example.com | [012 03-12 01:56:11.58 UTC] [%{longpkg}] %{callpath} -> INFO Creating gossip service with self membership of Endpoint: peer1.org2.example.com:7051, InternalEndpoint: peer1.org2.example.com:7051, PKI-ID: 54071d960ff51087a5562fde4801dfa904c634c6c3c38da0d982a0b1f62f0a27, Metadata: +peer1.org2.example.com | [013 03-12 01:56:11.58 UTC] [%{longpkg}] %{callpath} -> INFO Gossip instance peer1.org2.example.com:7051 started +peer1.org2.example.com | [014 03-12 01:56:11.60 UTC] [%{longpkg}] %{callpath} -> INFO system chaincode lscc/(github.com/hyperledger/fabric/core/scc/lscc) deployed +peer1.org2.example.com | [015 03-12 01:56:11.60 UTC] [%{longpkg}] %{callpath} -> INFO Init CSCC +peer1.org2.example.com | [016 03-12 01:56:11.60 UTC] [%{longpkg}] %{callpath} -> INFO system chaincode cscc/(github.com/hyperledger/fabric/core/scc/cscc) deployed +peer1.org2.example.com | [017 03-12 01:56:11.61 UTC] [%{longpkg}] %{callpath} -> INFO Init QSCC +peer1.org2.example.com | [018 03-12 01:56:11.61 UTC] [%{longpkg}] %{callpath} -> INFO system chaincode qscc/(github.com/hyperledger/fabric/core/scc/qscc) deployed +peer1.org2.example.com | [019 03-12 01:56:11.61 UTC] [%{longpkg}] %{callpath} -> INFO system chaincode (+lifecycle,github.com/hyperledger/fabric/core/chaincode/lifecycle) disabled +peer1.org2.example.com | [01a 03-12 01:56:11.61 UTC] [%{longpkg}] %{callpath} -> INFO Deployed system chaincodes +peer1.org2.example.com | [01b 03-12 01:56:11.61 UTC] [%{longpkg}] %{callpath} -> INFO Created with config TLS: true, authCacheMaxSize: 1000, authCachePurgeRatio: 0.750000 +peer1.org2.example.com | [01c 03-12 01:56:11.61 UTC] [%{longpkg}] %{callpath} -> INFO Discovery service activated +peer1.org2.example.com | [01d 03-12 01:56:11.62 UTC] [%{longpkg}] %{callpath} -> INFO Starting peer with ID=[name:"peer1.org2.example.com" ], network ID=[dev], address=[peer1.org2.example.com:7051] +peer1.org2.example.com | [01e 03-12 01:56:11.62 UTC] [%{longpkg}] %{callpath} -> INFO Started peer with ID=[name:"peer1.org2.example.com" ], network ID=[dev], address=[peer1.org2.example.com:7051] +peer1.org2.example.com | [01f 03-12 01:56:15.00 UTC] [%{longpkg}] %{callpath} -> WARN Could not connect to Endpoint: peer0.org2.example.com:7051, InternalEndpoint: peer0.org2.example.com:7051, PKI-ID: , Metadata: : context deadline exceeded +peer1.org2.example.com | [020 03-12 01:56:22.55 UTC] [%{longpkg}] %{callpath} -> INFO [][19a8272a] Entry chaincode: name:"cscc" +peer1.org2.example.com | [021 03-12 01:56:22.55 UTC] [%{longpkg}] %{callpath} -> INFO Creating ledger [businesschannel] with genesis block +peer1.org2.example.com | [022 03-12 01:56:22.56 UTC] [%{longpkg}] %{callpath} -> INFO Getting block information from block storage +peer1.org2.example.com | [023 03-12 01:56:22.58 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Committed block [0] with 1 transaction(s) in 15ms (state_validation=1ms block_commit=6ms state_commit=5ms) +peer1.org2.example.com | [024 03-12 01:56:22.58 UTC] [%{longpkg}] %{callpath} -> INFO Created ledger [businesschannel] with genesis block +peer1.org2.example.com | [025 03-12 01:56:22.59 UTC] [%{longpkg}] %{callpath} -> INFO Joining gossip network of channel businesschannel with 2 organizations +peer1.org2.example.com | [026 03-12 01:56:22.59 UTC] [%{longpkg}] %{callpath} -> INFO No configured anchor peers of Org2MSP for channel businesschannel to learn about +peer1.org2.example.com | [027 03-12 01:56:22.59 UTC] [%{longpkg}] %{callpath} -> INFO No configured anchor peers of Org1MSP for channel businesschannel to learn about +peer1.org2.example.com | [028 03-12 01:56:22.62 UTC] [%{longpkg}] %{callpath} -> INFO Updating metadata information, current ledger sequence is at = 0, next expected block is = 1 +peer1.org2.example.com | [029 03-12 01:56:22.62 UTC] [%{longpkg}] %{callpath} -> INFO system chaincode lscc/businesschannel(github.com/hyperledger/fabric/core/scc/lscc) deployed +peer1.org2.example.com | [02a 03-12 01:56:22.62 UTC] [%{longpkg}] %{callpath} -> INFO Init CSCC +peer1.org2.example.com | [02b 03-12 01:56:22.62 UTC] [%{longpkg}] %{callpath} -> INFO system chaincode cscc/businesschannel(github.com/hyperledger/fabric/core/scc/cscc) deployed +peer1.org2.example.com | [02c 03-12 01:56:22.62 UTC] [%{longpkg}] %{callpath} -> INFO Init QSCC +peer1.org2.example.com | [02d 03-12 01:56:22.62 UTC] [%{longpkg}] %{callpath} -> INFO system chaincode qscc/businesschannel(github.com/hyperledger/fabric/core/scc/qscc) deployed +peer1.org2.example.com | [02e 03-12 01:56:22.62 UTC] [%{longpkg}] %{callpath} -> INFO system chaincode (+lifecycle,github.com/hyperledger/fabric/core/chaincode/lifecycle) disabled +peer1.org2.example.com | [02f 03-12 01:56:22.62 UTC] [%{longpkg}] %{callpath} -> INFO [][19a8272a] Exit chaincode: name:"cscc" (69ms) +peer1.org2.example.com | [030 03-12 01:56:22.62 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-03-12T01:56:22.554Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.28.0.3:36486", "grpc.code": "OK", "grpc.call_duration": "71.2601ms"} +peer1.org2.example.com | [031 03-12 01:56:23.80 UTC] [%{longpkg}] %{callpath} -> INFO [][8488de72] Entry chaincode: name:"cscc" +peer1.org2.example.com | [032 03-12 01:56:23.81 UTC] [%{longpkg}] %{callpath} -> INFO [][8488de72] Exit chaincode: name:"cscc" (3ms) +peer1.org2.example.com | [033 03-12 01:56:23.81 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-03-12T01:56:23.807Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.28.0.3:36494", "grpc.code": "OK", "grpc.call_duration": "4.1071ms"} +peer1.org2.example.com | [034 03-12 01:56:24.81 UTC] [%{longpkg}] %{callpath} -> INFO [][a6dde3b0] Entry chaincode: name:"qscc" +peer1.org2.example.com | [035 03-12 01:56:24.81 UTC] [%{longpkg}] %{callpath} -> INFO [][a6dde3b0] Exit chaincode: name:"qscc" (2ms) +peer1.org2.example.com | [036 03-12 01:56:24.81 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-03-12T01:56:24.814Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.28.0.3:36502", "grpc.code": "OK", "grpc.call_duration": "2.8303ms"} +peer1.org2.example.com | [037 03-12 01:56:28.62 UTC] [%{longpkg}] %{callpath} -> INFO 54071d960ff51087a5562fde4801dfa904c634c6c3c38da0d982a0b1f62f0a27 : Becoming a leader +peer1.org2.example.com | [038 03-12 01:56:28.62 UTC] [%{longpkg}] %{callpath} -> INFO Elected as a leader, starting delivery service for channel businesschannel +peer0.org2.example.com | [001 03-12 01:56:12.99 UTC] [%{longpkg}] %{callpath} -> INFO Starting peer: +peer0.org2.example.com | Version: 1.4.0 +peer0.org2.example.com | Commit SHA: development build +peer0.org2.example.com | Go version: go1.11.4 +peer0.org2.example.com | OS/Arch: linux/amd64 +peer0.org2.example.com | Chaincode: +peer0.org2.example.com | Base Image Version: 0.4.14 +peer0.org2.example.com | Base Docker Namespace: hyperledger +peer0.org2.example.com | Base Docker Label: org.hyperledger.fabric +peer0.org2.example.com | Docker Namespace: hyperledger +peer0.org2.example.com | [002 03-12 01:56:13.00 UTC] [%{longpkg}] %{callpath} -> INFO Initializing ledger mgmt +peer0.org2.example.com | [003 03-12 01:56:13.01 UTC] [%{longpkg}] %{callpath} -> INFO Initializing ledger provider +peer0.org2.example.com | [004 03-12 01:56:13.08 UTC] [%{longpkg}] %{callpath} -> INFO ledger provider Initialized +peer0.org2.example.com | [005 03-12 01:56:13.14 UTC] [%{longpkg}] %{callpath} -> INFO ledger mgmt initialized +peer0.org2.example.com | [006 03-12 01:56:13.14 UTC] [%{longpkg}] %{callpath} -> INFO Auto-detected peer address: 172.28.0.6:7051 +peer0.org2.example.com | [007 03-12 01:56:13.14 UTC] [%{longpkg}] %{callpath} -> INFO Returning peer0.org2.example.com:7051 +peer0.org2.example.com | [008 03-12 01:56:13.14 UTC] [%{longpkg}] %{callpath} -> INFO Auto-detected peer address: 172.28.0.6:7051 +peer0.org2.example.com | [009 03-12 01:56:13.14 UTC] [%{longpkg}] %{callpath} -> INFO Returning peer0.org2.example.com:7051 +peer0.org2.example.com | [00a 03-12 01:56:13.15 UTC] [%{longpkg}] %{callpath} -> INFO Starting peer with TLS enabled +peer0.org2.example.com | [00b 03-12 01:56:13.17 UTC] [%{longpkg}] %{callpath} -> INFO Entering computeChaincodeEndpoint with peerHostname: peer0.org2.example.com +peer0.org2.example.com | [00c 03-12 01:56:13.17 UTC] [%{longpkg}] %{callpath} -> INFO Exit with ccEndpoint: peer0.org2.example.com:7052 +peer0.org2.example.com | [00d 03-12 01:56:13.19 UTC] [%{longpkg}] %{callpath} -> INFO system chaincode lscc(github.com/hyperledger/fabric/core/scc/lscc) registered +peer0.org2.example.com | [00e 03-12 01:56:13.19 UTC] [%{longpkg}] %{callpath} -> INFO system chaincode cscc(github.com/hyperledger/fabric/core/scc/cscc) registered +peer0.org2.example.com | [00f 03-12 01:56:13.19 UTC] [%{longpkg}] %{callpath} -> INFO system chaincode qscc(github.com/hyperledger/fabric/core/scc/qscc) registered +peer0.org2.example.com | [010 03-12 01:56:13.19 UTC] [%{longpkg}] %{callpath} -> INFO system chaincode (+lifecycle,github.com/hyperledger/fabric/core/chaincode/lifecycle,true) disabled +peer0.org2.example.com | [011 03-12 01:56:13.22 UTC] [%{longpkg}] %{callpath} -> INFO Initialize gossip with endpoint peer0.org2.example.com:7051 and bootstrap set [peer0.org2.example.com:7051] +peer0.org2.example.com | [012 03-12 01:56:13.25 UTC] [%{longpkg}] %{callpath} -> INFO Creating gossip service with self membership of Endpoint: peer0.org2.example.com:7051, InternalEndpoint: peer0.org2.example.com:7051, PKI-ID: 75b2768046f1cff79a75d29027b3162b4c2d489ed2c22c48403d0760a7c0a76b, Metadata: +peer0.org2.example.com | [013 03-12 01:56:13.27 UTC] [%{longpkg}] %{callpath} -> INFO Gossip instance peer0.org2.example.com:7051 started +peer0.org2.example.com | [014 03-12 01:56:13.28 UTC] [%{longpkg}] %{callpath} -> INFO system chaincode lscc/(github.com/hyperledger/fabric/core/scc/lscc) deployed +peer0.org2.example.com | [015 03-12 01:56:13.28 UTC] [%{longpkg}] %{callpath} -> INFO Init CSCC +peer0.org2.example.com | [016 03-12 01:56:13.28 UTC] [%{longpkg}] %{callpath} -> INFO system chaincode cscc/(github.com/hyperledger/fabric/core/scc/cscc) deployed +peer0.org2.example.com | [017 03-12 01:56:13.29 UTC] [%{longpkg}] %{callpath} -> INFO Init QSCC +peer0.org2.example.com | [018 03-12 01:56:13.29 UTC] [%{longpkg}] %{callpath} -> INFO system chaincode qscc/(github.com/hyperledger/fabric/core/scc/qscc) deployed +peer0.org2.example.com | [019 03-12 01:56:13.29 UTC] [%{longpkg}] %{callpath} -> INFO system chaincode (+lifecycle,github.com/hyperledger/fabric/core/chaincode/lifecycle) disabled +peer0.org2.example.com | [01a 03-12 01:56:13.29 UTC] [%{longpkg}] %{callpath} -> INFO Deployed system chaincodes +peer0.org2.example.com | [01b 03-12 01:56:13.29 UTC] [%{longpkg}] %{callpath} -> INFO Created with config TLS: true, authCacheMaxSize: 1000, authCachePurgeRatio: 0.750000 +peer0.org2.example.com | [01c 03-12 01:56:13.29 UTC] [%{longpkg}] %{callpath} -> INFO Discovery service activated +peer0.org2.example.com | [01d 03-12 01:56:13.29 UTC] [%{longpkg}] %{callpath} -> INFO Starting peer with ID=[name:"peer0.org2.example.com" ], network ID=[dev], address=[peer0.org2.example.com:7051] +peer0.org2.example.com | [01e 03-12 01:56:13.29 UTC] [%{longpkg}] %{callpath} -> INFO Started peer with ID=[name:"peer0.org2.example.com" ], network ID=[dev], address=[peer0.org2.example.com:7051] +peer0.org2.example.com | [01f 03-12 01:56:22.29 UTC] [%{longpkg}] %{callpath} -> INFO [][2451be49] Entry chaincode: name:"cscc" +peer0.org2.example.com | [020 03-12 01:56:22.29 UTC] [%{longpkg}] %{callpath} -> INFO Creating ledger [businesschannel] with genesis block +peer0.org2.example.com | [021 03-12 01:56:22.30 UTC] [%{longpkg}] %{callpath} -> INFO Getting block information from block storage +peer0.org2.example.com | [022 03-12 01:56:22.32 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Committed block [0] with 1 transaction(s) in 16ms (state_validation=1ms block_commit=10ms state_commit=2ms) +peer0.org2.example.com | [023 03-12 01:56:22.32 UTC] [%{longpkg}] %{callpath} -> INFO Created ledger [businesschannel] with genesis block +peer0.org2.example.com | [024 03-12 01:56:22.34 UTC] [%{longpkg}] %{callpath} -> INFO Joining gossip network of channel businesschannel with 2 organizations +peer0.org2.example.com | [025 03-12 01:56:22.34 UTC] [%{longpkg}] %{callpath} -> INFO No configured anchor peers of Org1MSP for channel businesschannel to learn about +peer0.org2.example.com | [026 03-12 01:56:22.34 UTC] [%{longpkg}] %{callpath} -> INFO No configured anchor peers of Org2MSP for channel businesschannel to learn about +peer0.org2.example.com | [027 03-12 01:56:22.38 UTC] [%{longpkg}] %{callpath} -> INFO Updating metadata information, current ledger sequence is at = 0, next expected block is = 1 +peer0.org2.example.com | [028 03-12 01:56:22.38 UTC] [%{longpkg}] %{callpath} -> INFO system chaincode lscc/businesschannel(github.com/hyperledger/fabric/core/scc/lscc) deployed +peer0.org2.example.com | [029 03-12 01:56:22.38 UTC] [%{longpkg}] %{callpath} -> INFO Init CSCC +peer0.org2.example.com | [02a 03-12 01:56:22.39 UTC] [%{longpkg}] %{callpath} -> INFO system chaincode cscc/businesschannel(github.com/hyperledger/fabric/core/scc/cscc) deployed +peer0.org2.example.com | [02b 03-12 01:56:22.39 UTC] [%{longpkg}] %{callpath} -> INFO Init QSCC +peer0.org2.example.com | [02c 03-12 01:56:22.39 UTC] [%{longpkg}] %{callpath} -> INFO system chaincode qscc/businesschannel(github.com/hyperledger/fabric/core/scc/qscc) deployed +peer0.org2.example.com | [02d 03-12 01:56:22.39 UTC] [%{longpkg}] %{callpath} -> INFO system chaincode (+lifecycle,github.com/hyperledger/fabric/core/chaincode/lifecycle) disabled +prometheus | level=info ts=2019-03-12T01:56:15.6118872Z caller=main.go:243 msg="Starting Prometheus" version="(version=2.6.0, branch=HEAD, revision=dbd1d58c894775c0788470944b818cc724f550fb)" +peer0.org2.example.com | [02e 03-12 01:56:22.39 UTC] [%{longpkg}] %{callpath} -> INFO [][2451be49] Exit chaincode: name:"cscc" (99ms) +peer0.org2.example.com | [02f 03-12 01:56:22.39 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-03-12T01:56:22.289Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.28.0.3:43694", "grpc.code": "OK", "grpc.call_duration": "104.9374ms"} +peer0.org2.example.com | [030 03-12 01:56:23.62 UTC] [%{longpkg}] %{callpath} -> INFO [][db769a89] Entry chaincode: name:"cscc" +peer0.org2.example.com | [031 03-12 01:56:23.62 UTC] [%{longpkg}] %{callpath} -> INFO [][db769a89] Exit chaincode: name:"cscc" (1ms) +peer0.org2.example.com | [032 03-12 01:56:23.62 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-03-12T01:56:23.625Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.28.0.3:43702", "grpc.code": "OK", "grpc.call_duration": "2.2011ms"} +peer0.org2.example.com | [033 03-12 01:56:24.66 UTC] [%{longpkg}] %{callpath} -> INFO [][6784ff4d] Entry chaincode: name:"qscc" +peer0.org2.example.com | [034 03-12 01:56:24.66 UTC] [%{longpkg}] %{callpath} -> INFO [][6784ff4d] Exit chaincode: name:"qscc" (2ms) +peer0.org2.example.com | [035 03-12 01:56:24.66 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-03-12T01:56:24.664Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.28.0.3:43710", "grpc.code": "OK", "grpc.call_duration": "3.2689ms"} +peer0.org2.example.com | [036 03-12 01:56:28.01 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-03-12T01:56:28.012Z", "grpc.service": "gossip.Gossip", "grpc.method": "Ping", "grpc.request_deadline": "2019-03-12T01:56:30.011Z", "grpc.peer_address": "172.28.0.7:52076", "grpc.peer_subject": "CN=peer0.org1.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "112.8µs"} +peer0.org2.example.com | [037 03-12 01:56:28.01 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-03-12T01:56:28.013Z", "grpc.service": "gossip.Gossip", "grpc.method": "GossipStream", "grpc.request_deadline": "2019-03-12T01:56:38.013Z", "grpc.peer_address": "172.28.0.7:52076", "grpc.peer_subject": "CN=peer0.org1.example.com,L=San Francisco,ST=California,C=US", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "5.2413ms"} +peer0.org2.example.com | [038 03-12 01:56:28.04 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-03-12T01:56:28.04Z", "grpc.service": "gossip.Gossip", "grpc.method": "Ping", "grpc.request_deadline": "2019-03-12T01:56:30.04Z", "grpc.peer_address": "172.28.0.7:52078", "grpc.peer_subject": "CN=peer0.org1.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "292.1µs"} +peer0.org2.example.com | [039 03-12 01:56:28.06 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-03-12T01:56:28.069Z", "grpc.service": "gossip.Gossip", "grpc.method": "Ping", "grpc.request_deadline": "2019-03-12T01:56:30.069Z", "grpc.peer_address": "172.28.0.5:51382", "grpc.peer_subject": "CN=peer1.org1.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "136.7µs"} +peer0.org2.example.com | [03a 03-12 01:56:28.08 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-03-12T01:56:28.071Z", "grpc.service": "gossip.Gossip", "grpc.method": "GossipStream", "grpc.request_deadline": "2019-03-12T01:56:38.071Z", "grpc.peer_address": "172.28.0.5:51382", "grpc.peer_subject": "CN=peer1.org1.example.com,L=San Francisco,ST=California,C=US", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "11.374ms"} +peer0.org2.example.com | [03b 03-12 01:56:28.09 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-03-12T01:56:28.095Z", "grpc.service": "gossip.Gossip", "grpc.method": "Ping", "grpc.request_deadline": "2019-03-12T01:56:30.094Z", "grpc.peer_address": "172.28.0.5:51386", "grpc.peer_subject": "CN=peer1.org1.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "158.1µs"} +peer0.org2.example.com | [03c 03-12 01:56:28.38 UTC] [%{longpkg}] %{callpath} -> INFO 75b2768046f1cff79a75d29027b3162b4c2d489ed2c22c48403d0760a7c0a76b : Becoming a leader +peer0.org2.example.com | [03d 03-12 01:56:28.38 UTC] [%{longpkg}] %{callpath} -> INFO Elected as a leader, starting delivery service for channel businesschannel +peer0.org2.example.com | [03e 03-12 01:56:28.41 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Received block [1] from buffer +peer0.org2.example.com | [03f 03-12 01:56:28.43 UTC] [%{longpkg}] %{callpath} -> INFO Joining gossip network of channel businesschannel with 2 organizations +peer0.org2.example.com | [040 03-12 01:56:28.43 UTC] [%{longpkg}] %{callpath} -> INFO No configured anchor peers of Org2MSP for channel businesschannel to learn about +peer0.org2.example.com | [041 03-12 01:56:28.43 UTC] [%{longpkg}] %{callpath} -> INFO Learning about the configured anchor peers of Org1MSP for channel businesschannel : [{peer0.org1.example.com 7051}] +peer0.org2.example.com | [042 03-12 01:56:28.44 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-03-12T01:56:28.045Z", "grpc.service": "gossip.Gossip", "grpc.method": "GossipStream", "grpc.peer_address": "172.28.0.7:52078", "grpc.peer_subject": "CN=peer0.org1.example.com,L=San Francisco,ST=California,C=US", "error": "EOF", "grpc.code": "Unknown", "grpc.call_duration": "404.4442ms"} +peer0.org2.example.com | [043 03-12 01:56:28.46 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Validated block [1] in 51ms +peer0.org2.example.com | [044 03-12 01:56:28.48 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Committed block [1] with 1 transaction(s) in 21ms (state_validation=0ms block_commit=14ms state_commit=2ms) +peer0.org2.example.com | [045 03-12 01:56:28.48 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Received block [2] from buffer +peer0.org2.example.com | [046 03-12 01:56:28.50 UTC] [%{longpkg}] %{callpath} -> INFO Joining gossip network of channel businesschannel with 2 organizations +peer0.org2.example.com | [047 03-12 01:56:28.50 UTC] [%{longpkg}] %{callpath} -> INFO Learning about the configured anchor peers of Org2MSP for channel businesschannel : [{peer0.org2.example.com 7051}] +peer0.org2.example.com | [048 03-12 01:56:28.50 UTC] [%{longpkg}] %{callpath} -> INFO Anchor peer with same endpoint, skipping connecting to myself +peer0.org2.example.com | [049 03-12 01:56:28.50 UTC] [%{longpkg}] %{callpath} -> INFO Learning about the configured anchor peers of Org1MSP for channel businesschannel : [{peer0.org1.example.com 7051}] +peer0.org2.example.com | [04a 03-12 01:56:28.52 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Validated block [2] in 39ms +peer0.org2.example.com | [04b 03-12 01:56:28.55 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Committed block [2] with 1 transaction(s) in 21ms (state_validation=5ms block_commit=8ms state_commit=5ms) +peer0.org2.example.com | [04c 03-12 01:56:28.77 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-03-12T01:56:28.779Z", "grpc.service": "gossip.Gossip", "grpc.method": "Ping", "grpc.request_deadline": "2019-03-12T01:56:30.778Z", "grpc.peer_address": "172.28.0.4:36514", "grpc.peer_subject": "CN=peer1.org2.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "133.8µs"} +peer0.org2.example.com | [04d 03-12 01:56:28.79 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-03-12T01:56:28.785Z", "grpc.service": "gossip.Gossip", "grpc.method": "GossipStream", "grpc.request_deadline": "2019-03-12T01:56:38.785Z", "grpc.peer_address": "172.28.0.4:36514", "grpc.peer_subject": "CN=peer1.org2.example.com,L=San Francisco,ST=California,C=US", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "8.3877ms"} +peer0.org2.example.com | [04e 03-12 01:56:28.81 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-03-12T01:56:28.818Z", "grpc.service": "gossip.Gossip", "grpc.method": "Ping", "grpc.request_deadline": "2019-03-12T01:56:30.817Z", "grpc.peer_address": "172.28.0.4:36518", "grpc.peer_subject": "CN=peer1.org2.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "126µs"} +peer0.org2.example.com | [04f 03-12 01:56:28.88 UTC] [%{longpkg}] %{callpath} -> WARN peer0.org1.example.com:7051, PKIid:3d21b0bc142d8ddae3c27797c0c2bf16b05e0414b227484fdbfabf9859231106 isn't responsive: EOF +peer0.org2.example.com | [050 03-12 01:56:28.88 UTC] [%{longpkg}] %{callpath} -> WARN Entering [3d21b0bc142d8ddae3c27797c0c2bf16b05e0414b227484fdbfabf9859231106] +peer0.org2.example.com | [051 03-12 01:56:28.88 UTC] [%{longpkg}] %{callpath} -> WARN Closing connection to Endpoint: peer0.org1.example.com:7051, InternalEndpoint: , PKI-ID: 3d21b0bc142d8ddae3c27797c0c2bf16b05e0414b227484fdbfabf9859231106, Metadata: +peer0.org2.example.com | [052 03-12 01:56:28.88 UTC] [%{longpkg}] %{callpath} -> WARN Exiting +peer0.org2.example.com | [053 03-12 01:56:28.89 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-03-12T01:56:28.891Z", "grpc.service": "gossip.Gossip", "grpc.method": "Ping", "grpc.request_deadline": "2019-03-12T01:56:30.89Z", "grpc.peer_address": "172.28.0.7:52110", "grpc.peer_subject": "CN=peer0.org1.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "213µs"} +peer0.org2.example.com | [054 03-12 01:56:32.34 UTC] [%{longpkg}] %{callpath} -> INFO Membership view has changed. peers went online: [[peer1.org1.example.com:7051 ] [peer1.org2.example.com:7051] [peer0.org1.example.com:7051 ]] , current view: [[peer1.org1.example.com:7051 ] [peer1.org2.example.com:7051] [peer0.org1.example.com:7051 ]] +peer0.org2.example.com | [055 03-12 01:56:32.38 UTC] [%{longpkg}] %{callpath} -> INFO [][ef60bc8e] Entry chaincode: name:"lscc" +peer0.org2.example.com | [056 03-12 01:56:32.38 UTC] [%{longpkg}] %{callpath} -> INFO Installed Chaincode [exp02] Version [1.0] to peer +peer0.org2.example.com | [057 03-12 01:56:32.38 UTC] [%{longpkg}] %{callpath} -> INFO [][ef60bc8e] Exit chaincode: name:"lscc" (2ms) +peer0.org2.example.com | [058 03-12 01:56:32.38 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-03-12T01:56:32.382Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.28.0.3:43784", "grpc.code": "OK", "grpc.call_duration": "4.5603ms"} +peer0.org2.example.com | [059 03-12 01:56:33.41 UTC] [%{longpkg}] %{callpath} -> INFO 75b2768046f1cff79a75d29027b3162b4c2d489ed2c22c48403d0760a7c0a76b Stopped being a leader +peer0.org2.example.com | [05a 03-12 01:56:33.41 UTC] [%{longpkg}] %{callpath} -> INFO Renounced leadership, stopping delivery service for channel businesschannel +peer0.org2.example.com | [05b 03-12 01:56:33.41 UTC] [%{longpkg}] %{callpath} -> WARN Got error: rpc error: code = Canceled desc = context canceled , at 1 attempt. Retrying in 1s +peer0.org2.example.com | [05c 03-12 01:56:33.41 UTC] [%{longpkg}] %{callpath} -> WARN [businesschannel] Receive error: client is closing +peer0.org2.example.com | [05d 03-12 01:56:39.98 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-03-12T01:56:39.98Z", "grpc.service": "gossip.Gossip", "grpc.method": "Ping", "grpc.request_deadline": "2019-03-12T01:56:41.979Z", "grpc.peer_address": "172.28.0.4:36564", "grpc.peer_subject": "CN=peer1.org2.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "125.8µs"} +peer0.org2.example.com | [05e 03-12 01:56:39.98 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-03-12T01:56:28.821Z", "grpc.service": "gossip.Gossip", "grpc.method": "GossipStream", "grpc.peer_address": "172.28.0.4:36518", "grpc.peer_subject": "CN=peer1.org2.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "11.1625415s"} +peer0.org2.example.com | [05f 03-12 01:56:39.98 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-03-12T01:56:39.982Z", "grpc.service": "gossip.Gossip", "grpc.method": "GossipStream", "grpc.request_deadline": "2019-03-12T01:56:49.982Z", "grpc.peer_address": "172.28.0.4:36564", "grpc.peer_subject": "CN=peer1.org2.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "2.2923ms"} +peer0.org2.example.com | [060 03-12 01:57:13.27 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Received block [3] from buffer +peer0.org2.example.com | [061 03-12 01:57:13.28 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Validated block [3] in 13ms +peer0.org2.example.com | [062 03-12 01:57:13.30 UTC] [%{longpkg}] %{callpath} -> INFO Channel [businesschannel]: Handling deploy or update of chaincode [exp02] +peer0.org2.example.com | [063 03-12 01:57:13.31 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Committed block [3] with 1 transaction(s) in 24ms (state_validation=12ms block_commit=8ms state_commit=1ms) +peer0.org2.example.com | [064 03-12 01:57:50.87 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Received block [4] from buffer +peer0.org2.example.com | [065 03-12 01:57:50.88 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Validated block [4] in 5ms +peer0.org2.example.com | [066 03-12 01:57:50.90 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Committed block [4] with 1 transaction(s) in 20ms (state_validation=1ms block_commit=12ms state_commit=3ms) +peer0.org2.example.com | [067 03-12 01:57:53.43 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Received block [5] from buffer +peer0.org2.example.com | [068 03-12 01:57:53.43 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Validated block [5] in 2ms +peer0.org2.example.com | [069 03-12 01:57:53.45 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Committed block [5] with 1 transaction(s) in 21ms (state_validation=0ms block_commit=11ms state_commit=2ms) +peer0.org2.example.com | [06a 03-12 01:58:05.16 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Received block [6] from buffer +peer0.org2.example.com | [06b 03-12 01:58:05.17 UTC] [%{longpkg}] %{callpath} -> WARN De-duplicating identity [Org1MSP0270edfed53a78d7d3c66dc25737f57f956e48ef69dca5ecc91c26679dd4eff3] at index 2 in signature set +peer0.org2.example.com | [06c 03-12 01:58:05.17 UTC] [%{longpkg}] %{callpath} -> WARN De-duplicating identity [Org1MSP0270edfed53a78d7d3c66dc25737f57f956e48ef69dca5ecc91c26679dd4eff3] at index 2 in signature set +peer0.org2.example.com | [06d 03-12 01:58:05.18 UTC] [%{longpkg}] %{callpath} -> INFO Joining gossip network of channel businesschannel with 3 organizations +peer0.org2.example.com | [06e 03-12 01:58:05.18 UTC] [%{longpkg}] %{callpath} -> INFO No configured anchor peers of Org3MSP for channel businesschannel to learn about +peer0.org2.example.com | [06f 03-12 01:58:05.18 UTC] [%{longpkg}] %{callpath} -> INFO Learning about the configured anchor peers of Org1MSP for channel businesschannel : [{peer0.org1.example.com 7051}] +peer0.org2.example.com | [070 03-12 01:58:05.18 UTC] [%{longpkg}] %{callpath} -> INFO Learning about the configured anchor peers of Org2MSP for channel businesschannel : [{peer0.org2.example.com 7051}] +peer0.org2.example.com | [071 03-12 01:58:05.18 UTC] [%{longpkg}] %{callpath} -> INFO Anchor peer with same endpoint, skipping connecting to myself +peer0.org2.example.com | [072 03-12 01:58:05.18 UTC] [%{longpkg}] %{callpath} -> WARN Failed to update ordering service endpoints, due to Channel with businesschannel id was not found +peer0.org2.example.com | [073 03-12 01:58:05.19 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Validated block [6] in 30ms +peer0.org2.example.com | [074 03-12 01:58:05.21 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Committed block [6] with 1 transaction(s) in 18ms (state_validation=1ms block_commit=11ms state_commit=3ms) +peer0.org2.example.com | [075 03-12 01:58:05.26 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-03-12T01:56:28.894Z", "grpc.service": "gossip.Gossip", "grpc.method": "GossipStream", "grpc.peer_address": "172.28.0.7:52110", "grpc.peer_subject": "CN=peer0.org1.example.com,L=San Francisco,ST=California,C=US", "error": "EOF", "grpc.code": "Unknown", "grpc.call_duration": "1m36.4694661s"} +peer0.org2.example.com | [076 03-12 01:58:05.30 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-03-12T01:58:05.309Z", "grpc.service": "gossip.Gossip", "grpc.method": "Ping", "grpc.request_deadline": "2019-03-12T01:58:07.308Z", "grpc.peer_address": "172.28.0.5:51632", "grpc.peer_subject": "CN=peer1.org1.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "168.9µs"} +peer0.org2.example.com | [077 03-12 01:58:05.31 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-03-12T01:58:05.314Z", "grpc.service": "gossip.Gossip", "grpc.method": "Ping", "grpc.request_deadline": "2019-03-12T01:58:07.313Z", "grpc.peer_address": "172.28.0.4:36738", "grpc.peer_subject": "CN=peer1.org2.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "209.3µs"} +peer0.org2.example.com | [078 03-12 01:58:05.32 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-03-12T01:58:05.321Z", "grpc.service": "gossip.Gossip", "grpc.method": "Ping", "grpc.request_deadline": "2019-03-12T01:58:07.32Z", "grpc.peer_address": "172.28.0.7:52328", "grpc.peer_subject": "CN=peer0.org1.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "127.7µs"} +peer0.org2.example.com | [079 03-12 01:58:05.35 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-03-12T01:58:05.333Z", "grpc.service": "gossip.Gossip", "grpc.method": "GossipStream", "grpc.request_deadline": "2019-03-12T01:58:15.333Z", "grpc.peer_address": "172.28.0.4:36738", "grpc.peer_subject": "CN=peer1.org2.example.com,L=San Francisco,ST=California,C=US", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "23.1584ms"} +peer0.org2.example.com | [07a 03-12 01:58:05.36 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-03-12T01:56:28.102Z", "grpc.service": "gossip.Gossip", "grpc.method": "GossipStream", "grpc.peer_address": "172.28.0.5:51386", "grpc.peer_subject": "CN=peer1.org1.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "1m37.3623225s"} +peer0.org2.example.com | [07b 03-12 01:58:05.36 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-03-12T01:58:05.328Z", "grpc.service": "gossip.Gossip", "grpc.method": "GossipStream", "grpc.request_deadline": "2019-03-12T01:58:15.328Z", "grpc.peer_address": "172.28.0.5:51632", "grpc.peer_subject": "CN=peer1.org1.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "37.4213ms"} +peer0.org2.example.com | [07c 03-12 01:58:05.37 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-03-12T01:58:05.374Z", "grpc.service": "gossip.Gossip", "grpc.method": "Ping", "grpc.request_deadline": "2019-03-12T01:58:07.373Z", "grpc.peer_address": "172.28.0.4:36748", "grpc.peer_subject": "CN=peer1.org2.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "254µs"} +peer0.org2.example.com | [07d 03-12 01:58:05.38 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-03-12T01:58:05.369Z", "grpc.service": "gossip.Gossip", "grpc.method": "GossipStream", "grpc.request_deadline": "2019-03-12T01:58:15.368Z", "grpc.peer_address": "172.28.0.7:52328", "grpc.peer_subject": "CN=peer0.org1.example.com,L=San Francisco,ST=California,C=US", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "19.0595ms"} +peer0.org2.example.com | [07e 03-12 01:58:05.39 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-03-12T01:58:05.393Z", "grpc.service": "gossip.Gossip", "grpc.method": "Ping", "grpc.request_deadline": "2019-03-12T01:58:07.392Z", "grpc.peer_address": "172.28.0.7:52338", "grpc.peer_subject": "CN=peer0.org1.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "278.7µs"} +peer0.org2.example.com | [07f 03-12 01:58:15.35 UTC] [%{longpkg}] %{callpath} -> INFO [][dee2722a] Entry chaincode: name:"cscc" +peer0.org2.example.com | [080 03-12 01:58:15.35 UTC] [%{longpkg}] %{callpath} -> INFO [][dee2722a] Exit chaincode: name:"cscc" (1ms) +peer0.org2.example.com | [081 03-12 01:58:15.35 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-03-12T01:58:15.351Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.28.0.3:44038", "grpc.code": "OK", "grpc.call_duration": "1.8343ms"} +peer0.org2.example.com | [082 03-12 01:58:16.19 UTC] [%{longpkg}] %{callpath} -> INFO [][12e3c8fd] Entry chaincode: name:"qscc" +peer0.org2.example.com | [083 03-12 01:58:16.19 UTC] [%{longpkg}] %{callpath} -> INFO [][12e3c8fd] Exit chaincode: name:"qscc" (2ms) +peer0.org2.example.com | [084 03-12 01:58:16.19 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-03-12T01:58:16.189Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.28.0.3:44048", "grpc.code": "OK", "grpc.call_duration": "3.3991ms"} +peer1.org2.example.com | [039 03-12 01:56:28.64 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Received block [1] from buffer +peer1.org2.example.com | [03a 03-12 01:56:28.67 UTC] [%{longpkg}] %{callpath} -> INFO Joining gossip network of channel businesschannel with 2 organizations +peer1.org2.example.com | [03b 03-12 01:56:28.67 UTC] [%{longpkg}] %{callpath} -> INFO No configured anchor peers of Org2MSP for channel businesschannel to learn about +peer1.org2.example.com | [03c 03-12 01:56:28.67 UTC] [%{longpkg}] %{callpath} -> INFO Learning about the configured anchor peers of Org1MSP for channel businesschannel : [{peer0.org1.example.com 7051}] +peer1.org2.example.com | [03d 03-12 01:56:28.69 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Validated block [1] in 42ms +peer1.org2.example.com | [03e 03-12 01:56:28.73 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Committed block [1] with 1 transaction(s) in 41ms (state_validation=5ms block_commit=22ms state_commit=9ms) +peer1.org2.example.com | [03f 03-12 01:56:28.73 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Received block [2] from buffer +peer1.org2.example.com | [040 03-12 01:56:28.76 UTC] [%{longpkg}] %{callpath} -> INFO Joining gossip network of channel businesschannel with 2 organizations +peer1.org2.example.com | [041 03-12 01:56:28.76 UTC] [%{longpkg}] %{callpath} -> INFO Learning about the configured anchor peers of Org2MSP for channel businesschannel : [{peer0.org2.example.com 7051}] +peer1.org2.example.com | [042 03-12 01:56:28.76 UTC] [%{longpkg}] %{callpath} -> INFO Learning about the configured anchor peers of Org1MSP for channel businesschannel : [{peer0.org1.example.com 7051}] +peer1.org2.example.com | [043 03-12 01:56:28.77 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Validated block [2] in 35ms +peer1.org2.example.com | [044 03-12 01:56:28.82 UTC] [%{longpkg}] %{callpath} -> WARN peer0.org1.example.com:7051, PKIid:3d21b0bc142d8ddae3c27797c0c2bf16b05e0414b227484fdbfabf9859231106 isn't responsive: EOF +peer1.org2.example.com | [045 03-12 01:56:28.82 UTC] [%{longpkg}] %{callpath} -> WARN Entering [3d21b0bc142d8ddae3c27797c0c2bf16b05e0414b227484fdbfabf9859231106] +peer1.org2.example.com | [046 03-12 01:56:28.82 UTC] [%{longpkg}] %{callpath} -> WARN Closing connection to Endpoint: peer0.org1.example.com:7051, InternalEndpoint: , PKI-ID: 3d21b0bc142d8ddae3c27797c0c2bf16b05e0414b227484fdbfabf9859231106, Metadata: +peer1.org2.example.com | [047 03-12 01:56:28.82 UTC] [%{longpkg}] %{callpath} -> WARN Exiting +peer1.org2.example.com | [048 03-12 01:56:28.83 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Committed block [2] with 1 transaction(s) in 60ms (state_validation=2ms block_commit=46ms state_commit=2ms) +peer1.org2.example.com | [049 03-12 01:56:28.88 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-03-12T01:56:28.888Z", "grpc.service": "gossip.Gossip", "grpc.method": "Ping", "grpc.request_deadline": "2019-03-12T01:56:30.888Z", "grpc.peer_address": "172.28.0.7:42786", "grpc.peer_subject": "CN=peer0.org1.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "162.5µs"} +peer1.org2.example.com | [04a 03-12 01:56:28.92 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-03-12T01:56:28.893Z", "grpc.service": "gossip.Gossip", "grpc.method": "GossipStream", "grpc.peer_address": "172.28.0.7:42786", "grpc.peer_subject": "CN=peer0.org1.example.com,L=San Francisco,ST=California,C=US", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "29.7292ms"} +peer1.org2.example.com | [04b 03-12 01:56:29.91 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-03-12T01:56:29.911Z", "grpc.service": "gossip.Gossip", "grpc.method": "Ping", "grpc.request_deadline": "2019-03-12T01:56:31.907Z", "grpc.peer_address": "172.28.0.7:42794", "grpc.peer_subject": "CN=peer0.org1.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "277.1µs"} +peer1.org2.example.com | [04c 03-12 01:56:29.95 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-03-12T01:56:29.919Z", "grpc.service": "gossip.Gossip", "grpc.method": "GossipStream", "grpc.peer_address": "172.28.0.7:42794", "grpc.peer_subject": "CN=peer0.org1.example.com,L=San Francisco,ST=California,C=US", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "37.4907ms"} +peer1.org2.example.com | [04d 03-12 01:56:30.10 UTC] [%{longpkg}] %{callpath} -> WARN StateInfo message GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"\013\341\342C\224\001E\365\343\257,\206_\343\031\345Q\243\003\363\001=\323J\372\t\327\360\\\006S\312" channel_MAC:"\344\265j[\3752\300\2262w\333\215z9\310\264&\370\364\372}~\262\333\217\027\344\276\327Lt\315" properties: > , Envelope: 98 bytes, Signature: 70 bytes is found invalid: PKIID wasn't found +peer1.org2.example.com | [04e 03-12 01:56:30.10 UTC] [%{longpkg}] %{callpath} -> WARN Message GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"\013\341\342C\224\001E\365\343\257,\206_\343\031\345Q\243\003\363\001=\323J\372\t\327\360\\\006S\312" channel_MAC:"\344\265j[\3752\300\2262w\333\215z9\310\264&\370\364\372}~\262\333\217\027\344\276\327Lt\315" properties: > , Envelope: 98 bytes, Signature: 70 bytes isn't valid +peer1.org2.example.com | [04f 03-12 01:56:32.59 UTC] [%{longpkg}] %{callpath} -> INFO Membership view has changed. peers went online: [[peer0.org1.example.com:7051 ] [peer0.org2.example.com:7051 ]] , current view: [[peer0.org1.example.com:7051 ] [peer0.org2.example.com:7051 ]] +peer1.org2.example.com | [050 03-12 01:56:33.16 UTC] [%{longpkg}] %{callpath} -> INFO [][f54cc84e] Entry chaincode: name:"lscc" +peer1.org2.example.com | [051 03-12 01:56:33.16 UTC] [%{longpkg}] %{callpath} -> INFO Installed Chaincode [exp02] Version [1.0] to peer +peer1.org2.example.com | [052 03-12 01:56:33.16 UTC] [%{longpkg}] %{callpath} -> INFO [][f54cc84e] Exit chaincode: name:"lscc" (2ms) +peer1.org2.example.com | [053 03-12 01:56:33.16 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-03-12T01:56:33.165Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.28.0.3:36582", "grpc.code": "OK", "grpc.call_duration": "2.9523ms"} +peer1.org2.example.com | [054 03-12 01:56:37.59 UTC] [%{longpkg}] %{callpath} -> INFO Membership view has changed. peers went online: [[peer1.org1.example.com:7051 ]] , current view: [[peer0.org2.example.com:7051 ] [peer0.org1.example.com:7051 ] [peer1.org1.example.com:7051 ]] +peer1.org2.example.com | [055 03-12 01:56:41.28 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-03-12T01:56:41.28Z", "grpc.service": "gossip.Gossip", "grpc.method": "Ping", "grpc.request_deadline": "2019-03-12T01:56:43.28Z", "grpc.peer_address": "172.28.0.6:60482", "grpc.peer_subject": "CN=peer0.org2.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "162µs"} +peer1.org2.example.com | [056 03-12 01:57:11.71 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-03-12T01:57:11.715Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.28.0.3:36624", "grpc.code": "OK", "grpc.call_duration": "3.5141ms"} +peer1.org2.example.com | [057 03-12 01:57:13.25 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Received block [3] from buffer +peer1.org2.example.com | [058 03-12 01:57:13.26 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Validated block [3] in 15ms +peer1.org2.example.com | [059 03-12 01:57:13.26 UTC] [%{longpkg}] %{callpath} -> INFO Channel [businesschannel]: Handling deploy or update of chaincode [exp02] +peer1.org2.example.com | [05a 03-12 01:57:13.30 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Committed block [3] with 1 transaction(s) in 37ms (state_validation=13ms block_commit=14ms state_commit=5ms) +peer1.org2.example.com | [05b 03-12 01:57:13.95 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][b5b6cf13] Entry chaincode: name:"exp02" +peer1.org2.example.com | [05c 03-12 01:57:13.97 UTC] [%{longpkg}] %{callpath} -> INFO building chaincode with ldflagsOpt: '-ldflags "-linkmode external -extldflags '-static'"' +peer1.org2.example.com | [05d 03-12 01:57:48.69 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][b5b6cf13] Exit chaincode: name:"exp02" (34773ms) +peer1.org2.example.com | [05e 03-12 01:57:48.69 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-03-12T01:57:13.947Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.28.0.3:36628", "grpc.code": "OK", "grpc.call_duration": "34.7801001s"} +peer1.org2.example.com | [05f 03-12 01:57:49.07 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][0897a665] Entry chaincode: name:"exp02" +peer1.org2.example.com | [060 03-12 01:57:49.07 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][0897a665] Exit chaincode: name:"exp02" (3ms) +peer1.org2.example.com | [061 03-12 01:57:49.07 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-03-12T01:57:49.073Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.28.0.3:36666", "grpc.code": "OK", "grpc.call_duration": "6.0623ms"} +peer1.org2.example.com | [062 03-12 01:57:50.86 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Received block [4] from buffer +peer1.org2.example.com | [063 03-12 01:57:50.87 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Validated block [4] in 4ms +peer1.org2.example.com | [064 03-12 01:57:50.90 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Committed block [4] with 1 transaction(s) in 27ms (state_validation=0ms block_commit=20ms state_commit=3ms) +peer1.org2.example.com | [065 03-12 01:57:51.21 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][f5e32371] Entry chaincode: name:"exp02" +peer1.org2.example.com | [066 03-12 01:57:51.22 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][f5e32371] Exit chaincode: name:"exp02" (4ms) +peer1.org2.example.com | [067 03-12 01:57:51.22 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-03-12T01:57:51.215Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.28.0.3:36670", "grpc.code": "OK", "grpc.call_duration": "6.6338ms"} +peer1.org2.example.com | [068 03-12 01:57:51.38 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][85b87e4f] Entry chaincode: name:"exp02" +peer1.org2.example.com | [069 03-12 01:57:51.40 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][85b87e4f] Exit chaincode: name:"exp02" (19ms) +peer1.org2.example.com | [06a 03-12 01:57:51.40 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-03-12T01:57:51.382Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.28.0.3:36674", "grpc.code": "OK", "grpc.call_duration": "21.5104ms"} +peer1.org2.example.com | [06b 03-12 01:57:53.42 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Received block [5] from buffer +peer1.org2.example.com | [06c 03-12 01:57:53.42 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Validated block [5] in 2ms +peer1.org2.example.com | [06d 03-12 01:57:53.45 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Committed block [5] with 1 transaction(s) in 22ms (state_validation=0ms block_commit=16ms state_commit=3ms) +peer1.org2.example.com | [06e 03-12 01:58:05.15 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Received block [6] from buffer +peer1.org2.example.com | [06f 03-12 01:58:05.15 UTC] [%{longpkg}] %{callpath} -> WARN De-duplicating identity [Org1MSP0270edfed53a78d7d3c66dc25737f57f956e48ef69dca5ecc91c26679dd4eff3] at index 2 in signature set +peer1.org2.example.com | [070 03-12 01:58:05.15 UTC] [%{longpkg}] %{callpath} -> WARN De-duplicating identity [Org1MSP0270edfed53a78d7d3c66dc25737f57f956e48ef69dca5ecc91c26679dd4eff3] at index 2 in signature set +peer1.org2.example.com | [071 03-12 01:58:05.22 UTC] [%{longpkg}] %{callpath} -> INFO Joining gossip network of channel businesschannel with 3 organizations +peer1.org2.example.com | [072 03-12 01:58:05.22 UTC] [%{longpkg}] %{callpath} -> INFO No configured anchor peers of Org3MSP for channel businesschannel to learn about +peer1.org2.example.com | [073 03-12 01:58:05.22 UTC] [%{longpkg}] %{callpath} -> INFO Learning about the configured anchor peers of Org1MSP for channel businesschannel : [{peer0.org1.example.com 7051}] +peer1.org2.example.com | [074 03-12 01:58:05.23 UTC] [%{longpkg}] %{callpath} -> INFO Learning about the configured anchor peers of Org2MSP for channel businesschannel : [{peer0.org2.example.com 7051}] +peer1.org2.example.com | [075 03-12 01:58:05.28 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Validated block [6] in 132ms +peer1.org2.example.com | [076 03-12 01:58:05.31 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Committed block [6] with 1 transaction(s) in 24ms (state_validation=5ms block_commit=14ms state_commit=2ms) +peer1.org2.example.com | [077 03-12 01:58:05.33 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-03-12T01:56:41.282Z", "grpc.service": "gossip.Gossip", "grpc.method": "GossipStream", "grpc.peer_address": "172.28.0.6:60482", "grpc.peer_subject": "CN=peer0.org2.example.com,L=San Francisco,ST=California,C=US", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "1m24.1566446s"} +peer1.org2.example.com | [078 03-12 01:58:05.76 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-03-12T01:58:05.763Z", "grpc.service": "gossip.Gossip", "grpc.method": "Ping", "grpc.request_deadline": "2019-03-12T01:58:07.762Z", "grpc.peer_address": "172.28.0.7:43018", "grpc.peer_subject": "CN=peer0.org1.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "185.9µs"} +peer1.org2.example.com | [079 03-12 01:58:05.79 UTC] [%{longpkg}] %{callpath} -> WARN peer0.org1.example.com:7051, PKIid:3d21b0bc142d8ddae3c27797c0c2bf16b05e0414b227484fdbfabf9859231106 isn't responsive: EOF +peer1.org2.example.com | [07a 03-12 01:58:05.79 UTC] [%{longpkg}] %{callpath} -> WARN Entering [3d21b0bc142d8ddae3c27797c0c2bf16b05e0414b227484fdbfabf9859231106] +peer1.org2.example.com | [07b 03-12 01:58:05.79 UTC] [%{longpkg}] %{callpath} -> WARN Closing connection to Endpoint: peer0.org1.example.com:7051, InternalEndpoint: , PKI-ID: 3d21b0bc142d8ddae3c27797c0c2bf16b05e0414b227484fdbfabf9859231106, Metadata: +peer1.org2.example.com | [07c 03-12 01:58:05.79 UTC] [%{longpkg}] %{callpath} -> WARN Exiting +peer1.org2.example.com | [07d 03-12 01:58:15.47 UTC] [%{longpkg}] %{callpath} -> INFO [][2b725e3c] Entry chaincode: name:"cscc" +peer1.org2.example.com | [07e 03-12 01:58:15.47 UTC] [%{longpkg}] %{callpath} -> INFO [][2b725e3c] Exit chaincode: name:"cscc" (0ms) +peer1.org2.example.com | [07f 03-12 01:58:15.47 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-03-12T01:58:15.477Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.28.0.3:36830", "grpc.code": "OK", "grpc.call_duration": "2.4339ms"} +peer1.org2.example.com | [080 03-12 01:58:16.33 UTC] [%{longpkg}] %{callpath} -> INFO [][dccdeb45] Entry chaincode: name:"qscc" +peer1.org2.example.com | [081 03-12 01:58:16.33 UTC] [%{longpkg}] %{callpath} -> INFO [][dccdeb45] Exit chaincode: name:"qscc" (1ms) +peer1.org2.example.com | [082 03-12 01:58:16.33 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-03-12T01:58:16.329Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.28.0.3:36840", "grpc.code": "OK", "grpc.call_duration": "2.6227ms"} +prometheus | level=info ts=2019-03-12T01:56:15.6120593Z caller=main.go:244 build_context="(go=go1.11.3, user=root@bf5760470f13, date=20181217-15:14:46)" +prometheus | level=info ts=2019-03-12T01:56:15.6131008Z caller=main.go:245 host_details="(Linux 4.9.125-linuxkit #1 SMP Fri Sep 7 08:20:28 UTC 2018 x86_64 prometheus (none))" +prometheus | level=info ts=2019-03-12T01:56:15.6142771Z caller=main.go:246 fd_limits="(soft=1048576, hard=1048576)" +prometheus | level=info ts=2019-03-12T01:56:15.6155424Z caller=main.go:247 vm_limits="(soft=unlimited, hard=unlimited)" +prometheus | level=info ts=2019-03-12T01:56:15.6202297Z caller=main.go:561 msg="Starting TSDB ..." +prometheus | level=info ts=2019-03-12T01:56:15.6206115Z caller=web.go:429 component=web msg="Start listening for connections" address=0.0.0.0:9090 +prometheus | level=info ts=2019-03-12T01:56:15.6399613Z caller=main.go:571 msg="TSDB started" +peer0.org1.example.com | [001 03-12 01:56:13.66 UTC] [%{longpkg}] %{callpath} -> INFO Starting peer: +peer0.org1.example.com | Version: 1.4.0 peer0.org1.example.com | Commit SHA: development build -peer0.org1.example.com | Go version: go1.11.2 +peer0.org1.example.com | Go version: go1.11.4 peer0.org1.example.com | OS/Arch: linux/amd64 peer0.org1.example.com | Chaincode: peer0.org1.example.com | Base Image Version: 0.4.14 peer0.org1.example.com | Base Docker Namespace: hyperledger peer0.org1.example.com | Base Docker Label: org.hyperledger.fabric peer0.org1.example.com | Docker Namespace: hyperledger -peer0.org1.example.com | [002 01-09 08:56:43.71 UTC] [%{longpkg}] %{callpath} -> INFO Initializing ledger mgmt -peer0.org1.example.com | [003 01-09 08:56:43.71 UTC] [%{longpkg}] %{callpath} -> INFO Initializing ledger provider -peer0.org1.example.com | [004 01-09 08:56:43.83 UTC] [%{longpkg}] %{callpath} -> INFO ledger provider Initialized -peer0.org1.example.com | [005 01-09 08:56:43.89 UTC] [%{longpkg}] %{callpath} -> INFO ledger mgmt initialized -peer0.org1.example.com | [006 01-09 08:56:43.89 UTC] [%{longpkg}] %{callpath} -> INFO Auto-detected peer address: 172.24.0.6:7051 -peer0.org1.example.com | [007 01-09 08:56:43.89 UTC] [%{longpkg}] %{callpath} -> INFO Returning peer0.org1.example.com:7051 -peer0.org1.example.com | [008 01-09 08:56:43.89 UTC] [%{longpkg}] %{callpath} -> INFO Auto-detected peer address: 172.24.0.6:7051 -peer0.org1.example.com | [009 01-09 08:56:43.89 UTC] [%{longpkg}] %{callpath} -> INFO Returning peer0.org1.example.com:7051 -peer0.org1.example.com | [00a 01-09 08:56:43.90 UTC] [%{longpkg}] %{callpath} -> INFO Starting peer with TLS enabled -peer0.org1.example.com | [00b 01-09 08:56:43.91 UTC] [%{longpkg}] %{callpath} -> INFO Entering computeChaincodeEndpoint with peerHostname: peer0.org1.example.com -peer0.org1.example.com | [00c 01-09 08:56:43.91 UTC] [%{longpkg}] %{callpath} -> INFO Exit with ccEndpoint: peer0.org1.example.com:7052 -peer0.org1.example.com | [00d 01-09 08:56:43.93 UTC] [%{longpkg}] %{callpath} -> INFO system chaincode lscc(github.com/hyperledger/fabric/core/scc/lscc) registered -peer0.org1.example.com | [00e 01-09 08:56:43.93 UTC] [%{longpkg}] %{callpath} -> INFO system chaincode cscc(github.com/hyperledger/fabric/core/scc/cscc) registered -peer0.org1.example.com | [00f 01-09 08:56:43.93 UTC] [%{longpkg}] %{callpath} -> INFO system chaincode qscc(github.com/hyperledger/fabric/core/scc/qscc) registered -peer0.org1.example.com | [010 01-09 08:56:43.93 UTC] [%{longpkg}] %{callpath} -> INFO system chaincode +lifecycle(github.com/hyperledger/fabric/core/chaincode/lifecycle) registered -peer0.org1.example.com | [011 01-09 08:56:43.94 UTC] [%{longpkg}] %{callpath} -> INFO Initialize gossip with endpoint peer0.org1.example.com:7051 and bootstrap set [127.0.0.1:7051] -peer0.org1.example.com | [012 01-09 08:56:43.94 UTC] [%{longpkg}] %{callpath} -> INFO Creating gossip service with self membership of Endpoint: peer0.org1.example.com:7051, InternalEndpoint: peer0.org1.example.com:7051, PKI-ID: 3d21b0bc142d8ddae3c27797c0c2bf16b05e0414b227484fdbfabf9859231106, Metadata: -peer0.org1.example.com | [013 01-09 08:56:43.94 UTC] [%{longpkg}] %{callpath} -> INFO Gossip instance peer0.org1.example.com:7051 started -peer0.org1.example.com | [014 01-09 08:56:43.95 UTC] [%{longpkg}] %{callpath} -> INFO system chaincode lscc/(github.com/hyperledger/fabric/core/scc/lscc) deployed -peer0.org1.example.com | [015 01-09 08:56:43.95 UTC] [%{longpkg}] %{callpath} -> INFO Init CSCC -peer0.org1.example.com | [016 01-09 08:56:43.95 UTC] [%{longpkg}] %{callpath} -> INFO system chaincode cscc/(github.com/hyperledger/fabric/core/scc/cscc) deployed -peer0.org1.example.com | [017 01-09 08:56:43.95 UTC] [%{longpkg}] %{callpath} -> INFO Init QSCC -peer0.org1.example.com | [018 01-09 08:56:43.95 UTC] [%{longpkg}] %{callpath} -> INFO system chaincode qscc/(github.com/hyperledger/fabric/core/scc/qscc) deployed -peer0.org1.example.com | [019 01-09 08:56:43.95 UTC] [%{longpkg}] %{callpath} -> INFO system chaincode +lifecycle/(github.com/hyperledger/fabric/core/chaincode/lifecycle) deployed -peer0.org1.example.com | [01a 01-09 08:56:43.95 UTC] [%{longpkg}] %{callpath} -> INFO Deployed system chaincodes -peer0.org1.example.com | [01b 01-09 08:56:43.95 UTC] [%{longpkg}] %{callpath} -> INFO Created with config TLS: true, authCacheMaxSize: 1000, authCachePurgeRatio: 0.750000 -peer0.org1.example.com | [01c 01-09 08:56:43.95 UTC] [%{longpkg}] %{callpath} -> INFO Discovery service activated -peer0.org1.example.com | [01d 01-09 08:56:43.95 UTC] [%{longpkg}] %{callpath} -> INFO Starting peer with ID=[name:"peer0.org1.example.com" ], network ID=[dev], address=[peer0.org1.example.com:7051] -peer0.org1.example.com | [01e 01-09 08:56:43.95 UTC] [%{longpkg}] %{callpath} -> INFO Started peer with ID=[name:"peer0.org1.example.com" ], network ID=[dev], address=[peer0.org1.example.com:7051] -peer0.org1.example.com | [01f 01-09 08:56:44.45 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T08:56:44.454Z", "grpc.service": "gossip.Gossip", "grpc.method": "Ping", "grpc.request_deadline": "2019-01-09T08:56:46.453Z", "grpc.peer_address": "172.24.0.4:36846", "grpc.peer_subject": "CN=peer1.org1.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "153.2µs"} -peer0.org1.example.com | [020 01-09 08:56:44.48 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T08:56:44.46Z", "grpc.service": "gossip.Gossip", "grpc.method": "GossipStream", "grpc.request_deadline": "2019-01-09T08:56:54.46Z", "grpc.peer_address": "172.24.0.4:36846", "grpc.peer_subject": "CN=peer1.org1.example.com,L=San Francisco,ST=California,C=US", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "25.0531ms"} -peer0.org1.example.com | [021 01-09 08:56:44.52 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T08:56:44.526Z", "grpc.service": "gossip.Gossip", "grpc.method": "Ping", "grpc.request_deadline": "2019-01-09T08:56:46.526Z", "grpc.peer_address": "172.24.0.4:36848", "grpc.peer_subject": "CN=peer1.org1.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "134.3µs"} -peer0.org1.example.com | [022 01-09 08:56:52.11 UTC] [%{longpkg}] %{callpath} -> INFO [][f3e4d798] Entry chaincode: name:"cscc" -peer0.org1.example.com | [023 01-09 08:56:52.11 UTC] [%{longpkg}] %{callpath} -> INFO Creating ledger [businesschannel] with genesis block -peer0.org1.example.com | [024 01-09 08:56:52.11 UTC] [%{longpkg}] %{callpath} -> INFO Getting block information from block storage -peer0.org1.example.com | [025 01-09 08:56:52.13 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Committed block [0] with 1 transaction(s) in 19ms (state_validation=0ms block_commit=9ms state_commit=3ms) -peer0.org1.example.com | [026 01-09 08:56:52.14 UTC] [%{longpkg}] %{callpath} -> INFO Created ledger [businesschannel] with genesis block -peer0.org1.example.com | [027 01-09 08:56:52.15 UTC] [%{longpkg}] %{callpath} -> INFO Joining gossip network of channel businesschannel with 2 organizations -peer0.org1.example.com | [028 01-09 08:56:52.15 UTC] [%{longpkg}] %{callpath} -> INFO No configured anchor peers of Org2MSP for channel businesschannel to learn about -peer0.org1.example.com | [029 01-09 08:56:52.15 UTC] [%{longpkg}] %{callpath} -> INFO No configured anchor peers of Org1MSP for channel businesschannel to learn about -peer0.org1.example.com | [02a 01-09 08:56:52.17 UTC] [%{longpkg}] %{callpath} -> INFO Updating metadata information, current ledger sequence is at = 0, next expected block is = 1 -peer0.org1.example.com | [02b 01-09 08:56:52.17 UTC] [%{longpkg}] %{callpath} -> INFO system chaincode lscc/businesschannel(github.com/hyperledger/fabric/core/scc/lscc) deployed -peer0.org1.example.com | [02c 01-09 08:56:52.17 UTC] [%{longpkg}] %{callpath} -> INFO Init CSCC -peer0.org1.example.com | [02d 01-09 08:56:52.17 UTC] [%{longpkg}] %{callpath} -> INFO system chaincode cscc/businesschannel(github.com/hyperledger/fabric/core/scc/cscc) deployed -peer0.org1.example.com | [02e 01-09 08:56:52.17 UTC] [%{longpkg}] %{callpath} -> INFO Init QSCC -peer0.org1.example.com | [02f 01-09 08:56:52.17 UTC] [%{longpkg}] %{callpath} -> INFO system chaincode qscc/businesschannel(github.com/hyperledger/fabric/core/scc/qscc) deployed -peer0.org1.example.com | [030 01-09 08:56:52.17 UTC] [%{longpkg}] %{callpath} -> INFO system chaincode +lifecycle/businesschannel(github.com/hyperledger/fabric/core/chaincode/lifecycle) deployed -peer0.org1.example.com | [031 01-09 08:56:52.18 UTC] [%{longpkg}] %{callpath} -> INFO [][f3e4d798] Exit chaincode: name:"cscc" (70ms) -peer0.org1.example.com | [032 01-09 08:56:52.18 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T08:56:52.108Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.24.0.8:47162", "grpc.code": "OK", "grpc.call_duration": "72.0132ms"} -peer0.org1.example.com | [033 01-09 08:56:53.39 UTC] [%{longpkg}] %{callpath} -> INFO [][a283709a] Entry chaincode: name:"cscc" -peer0.org1.example.com | [034 01-09 08:56:53.39 UTC] [%{longpkg}] %{callpath} -> INFO [][a283709a] Exit chaincode: name:"cscc" (1ms) -peer0.org1.example.com | [035 01-09 08:56:53.40 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T08:56:53.397Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.24.0.8:47170", "grpc.code": "OK", "grpc.call_duration": "2.7433ms"} -peer0.org1.example.com | [036 01-09 08:56:54.41 UTC] [%{longpkg}] %{callpath} -> INFO [][86474afb] Entry chaincode: name:"qscc" -peer0.org1.example.com | [037 01-09 08:56:54.41 UTC] [%{longpkg}] %{callpath} -> INFO [][86474afb] Exit chaincode: name:"qscc" (2ms) -peer0.org1.example.com | [038 01-09 08:56:54.41 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T08:56:54.411Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.24.0.8:47178", "grpc.code": "OK", "grpc.call_duration": "3.8551ms"} -peer0.org1.example.com | [039 01-09 08:56:57.15 UTC] [%{longpkg}] %{callpath} -> INFO Membership view has changed. peers went online: [[peer1.org1.example.com:7051]] , current view: [[peer1.org1.example.com:7051]] -peer0.org1.example.com | [03a 01-09 08:56:58.17 UTC] [%{longpkg}] %{callpath} -> INFO 3d21b0bc142d8ddae3c27797c0c2bf16b05e0414b227484fdbfabf9859231106 : Becoming a leader -peer0.org1.example.com | [03b 01-09 08:56:58.17 UTC] [%{longpkg}] %{callpath} -> INFO Elected as a leader, starting delivery service for channel businesschannel -peer0.org1.example.com | [03c 01-09 08:56:58.20 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Received block [1] from buffer -peer0.org1.example.com | [03d 01-09 08:56:58.25 UTC] [%{longpkg}] %{callpath} -> INFO Joining gossip network of channel businesschannel with 2 organizations -peer0.org1.example.com | [03e 01-09 08:56:58.25 UTC] [%{longpkg}] %{callpath} -> INFO Learning about the configured anchor peers of Org1MSP for channel businesschannel : [{peer0.org1.example.com 7051}] -peer0.org1.example.com | [03f 01-09 08:56:58.25 UTC] [%{longpkg}] %{callpath} -> INFO Anchor peer with same endpoint, skipping connecting to myself -peer0.org1.example.com | [040 01-09 08:56:58.25 UTC] [%{longpkg}] %{callpath} -> INFO No configured anchor peers of Org2MSP for channel businesschannel to learn about -peer0.org1.example.com | [041 01-09 08:56:58.26 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T08:56:58.266Z", "grpc.service": "gossip.Gossip", "grpc.method": "Ping", "grpc.request_deadline": "2019-01-09T08:57:00.265Z", "grpc.peer_address": "172.24.0.4:36894", "grpc.peer_subject": "CN=peer1.org1.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "194µs"} -peer0.org1.example.com | [042 01-09 08:56:58.27 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T08:56:44.53Z", "grpc.service": "gossip.Gossip", "grpc.method": "GossipStream", "grpc.peer_address": "172.24.0.4:36848", "grpc.peer_subject": "CN=peer1.org1.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "13.7728773s"} -peer0.org1.example.com | [043 01-09 08:56:58.27 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T08:56:58.268Z", "grpc.service": "gossip.Gossip", "grpc.method": "GossipStream", "grpc.request_deadline": "2019-01-09T08:57:08.268Z", "grpc.peer_address": "172.24.0.4:36894", "grpc.peer_subject": "CN=peer1.org1.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "1.8062ms"} -peer0.org1.example.com | [044 01-09 08:56:58.28 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Validated block [1] in 72ms -peer0.org1.example.com | [045 01-09 08:56:58.31 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Committed block [1] with 1 transaction(s) in 27ms (state_validation=0ms block_commit=15ms state_commit=6ms) -peer0.org1.example.com | [046 01-09 08:56:58.31 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Received block [2] from buffer -peer0.org1.example.com | [047 01-09 08:56:58.34 UTC] [%{longpkg}] %{callpath} -> INFO Joining gossip network of channel businesschannel with 2 organizations -peer0.org1.example.com | [048 01-09 08:56:58.34 UTC] [%{longpkg}] %{callpath} -> INFO Learning about the configured anchor peers of Org2MSP for channel businesschannel : [{peer0.org2.example.com 7051}] -peer0.org1.example.com | [049 01-09 08:56:58.34 UTC] [%{longpkg}] %{callpath} -> INFO Learning about the configured anchor peers of Org1MSP for channel businesschannel : [{peer0.org1.example.com 7051}] -peer0.org1.example.com | [04a 01-09 08:56:58.35 UTC] [%{longpkg}] %{callpath} -> INFO Anchor peer with same endpoint, skipping connecting to myself -peer0.org1.example.com | [04b 01-09 08:56:58.38 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Validated block [2] in 68ms -peer0.org1.example.com | [04c 01-09 08:56:58.48 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Committed block [2] with 1 transaction(s) in 97ms (state_validation=8ms block_commit=81ms state_commit=3ms) -peer0.org1.example.com | [04d 01-09 08:56:58.53 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T08:56:58.529Z", "grpc.service": "gossip.Gossip", "grpc.method": "Ping", "grpc.request_deadline": "2019-01-09T08:57:00.528Z", "grpc.peer_address": "172.24.0.4:36900", "grpc.peer_subject": "CN=peer1.org1.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "707µs"} -peer0.org1.example.com | [04e 01-09 08:56:58.54 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T08:56:58.535Z", "grpc.service": "gossip.Gossip", "grpc.method": "GossipStream", "grpc.request_deadline": "2019-01-09T08:57:08.534Z", "grpc.peer_address": "172.24.0.4:36900", "grpc.peer_subject": "CN=peer1.org1.example.com,L=San Francisco,ST=California,C=US", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "9.3923ms"} -peer0.org1.example.com | [04f 01-09 08:56:58.55 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T08:56:58.559Z", "grpc.service": "gossip.Gossip", "grpc.method": "Ping", "grpc.request_deadline": "2019-01-09T08:57:00.558Z", "grpc.peer_address": "172.24.0.4:36904", "grpc.peer_subject": "CN=peer1.org1.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "148.2µs"} -peer0.org1.example.com | [050 01-09 08:56:58.60 UTC] [%{longpkg}] %{callpath} -> WARN Message GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes isn't valid -peer0.org1.example.com | [051 01-09 08:56:58.75 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T08:56:58.749Z", "grpc.service": "gossip.Gossip", "grpc.method": "Ping", "grpc.request_deadline": "2019-01-09T08:57:00.748Z", "grpc.peer_address": "172.24.0.3:55508", "grpc.peer_subject": "CN=peer0.org2.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "568.1µs"} -peer0.org1.example.com | [052 01-09 08:56:58.78 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T08:56:58.756Z", "grpc.service": "gossip.Gossip", "grpc.method": "GossipStream", "grpc.request_deadline": "2019-01-09T08:57:08.755Z", "grpc.peer_address": "172.24.0.3:55508", "grpc.peer_subject": "CN=peer0.org2.example.com,L=San Francisco,ST=California,C=US", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "31.6442ms"} -peer0.org1.example.com | [053 01-09 08:56:58.81 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T08:56:58.807Z", "grpc.service": "gossip.Gossip", "grpc.method": "Ping", "grpc.request_deadline": "2019-01-09T08:57:00.806Z", "grpc.peer_address": "172.24.0.5:58994", "grpc.peer_subject": "CN=peer1.org2.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "2.7753ms"} -peer0.org1.example.com | [054 01-09 08:56:58.85 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T08:56:58.814Z", "grpc.service": "gossip.Gossip", "grpc.method": "GossipStream", "grpc.request_deadline": "2019-01-09T08:57:08.814Z", "grpc.peer_address": "172.24.0.5:58994", "grpc.peer_subject": "CN=peer1.org2.example.com,L=San Francisco,ST=California,C=US", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "37.8175ms"} -peer0.org1.example.com | [055 01-09 08:56:58.86 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T08:56:58.862Z", "grpc.service": "gossip.Gossip", "grpc.method": "Ping", "grpc.request_deadline": "2019-01-09T08:57:00.862Z", "grpc.peer_address": "172.24.0.5:58996", "grpc.peer_subject": "CN=peer1.org2.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "260.7µs"} -peer0.org1.example.com | [056 01-09 08:56:58.89 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T08:56:58.894Z", "grpc.service": "gossip.Gossip", "grpc.method": "Ping", "grpc.request_deadline": "2019-01-09T08:57:00.891Z", "grpc.peer_address": "172.24.0.3:55514", "grpc.peer_subject": "CN=peer0.org2.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "542.2µs"} -peer0.org1.example.com | [057 01-09 08:56:58.92 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T08:56:58.901Z", "grpc.service": "gossip.Gossip", "grpc.method": "GossipStream", "grpc.request_deadline": "2019-01-09T08:57:08.901Z", "grpc.peer_address": "172.24.0.3:55514", "grpc.peer_subject": "CN=peer0.org2.example.com,L=San Francisco,ST=California,C=US", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "21.7184ms"} -peer0.org1.example.com | [058 01-09 08:56:58.93 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T08:56:58.935Z", "grpc.service": "gossip.Gossip", "grpc.method": "Ping", "grpc.request_deadline": "2019-01-09T08:57:00.935Z", "grpc.peer_address": "172.24.0.3:55516", "grpc.peer_subject": "CN=peer0.org2.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "132.5µs"} -peer0.org1.example.com | [059 01-09 08:56:58.94 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T08:56:58.948Z", "grpc.service": "gossip.Gossip", "grpc.method": "Ping", "grpc.request_deadline": "2019-01-09T08:57:00.947Z", "grpc.peer_address": "172.24.0.5:59004", "grpc.peer_subject": "CN=peer1.org2.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "514.8µs"} -peer0.org1.example.com | [05a 01-09 08:57:01.97 UTC] [%{longpkg}] %{callpath} -> WARN Failed reading messge from 172.24.0.5:59004, reason: Timed out waiting for connection message from 172.24.0.5:59004 -peer0.org1.example.com | [05b 01-09 08:57:01.98 UTC] [%{longpkg}] %{callpath} -> ERRO Authentication failed: Timed out waiting for connection message from 172.24.0.5:59004 -peer0.org1.example.com | [05c 01-09 08:57:01.98 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T08:56:58.952Z", "grpc.service": "gossip.Gossip", "grpc.method": "GossipStream", "grpc.request_deadline": "2019-01-09T08:57:08.951Z", "grpc.peer_address": "172.24.0.5:59004", "grpc.peer_subject": "CN=peer1.org2.example.com,L=San Francisco,ST=California,C=US", "error": "Timed out waiting for connection message from 172.24.0.5:59004", "grpc.code": "Unknown", "grpc.call_duration": "3.0293632s"} -peer0.org1.example.com | [05d 01-09 08:57:02.15 UTC] [%{longpkg}] %{callpath} -> INFO Membership view has changed. peers went online: [[peer0.org2.example.com:7051 ] [peer1.org2.example.com:7051 ]] , current view: [[peer1.org1.example.com:7051] [peer0.org2.example.com:7051 ] [peer1.org2.example.com:7051 ]] -peer0.org1.example.com | [05e 01-09 08:57:03.42 UTC] [%{longpkg}] %{callpath} -> INFO [][48fb2994] Entry chaincode: name:"lscc" -peer0.org1.example.com | [05f 01-09 08:57:03.42 UTC] [%{longpkg}] %{callpath} -> INFO Installed Chaincode [exp02] Version [1.0] to peer -peer0.org1.example.com | [060 01-09 08:57:03.43 UTC] [%{longpkg}] %{callpath} -> INFO [][48fb2994] Exit chaincode: name:"lscc" (7ms) -peer0.org1.example.com | [061 01-09 08:57:03.44 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T08:57:03.422Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.24.0.8:47232", "grpc.code": "OK", "grpc.call_duration": "18.9978ms"} -peer0.org1.example.com | [062 01-09 08:57:06.16 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][2966997c] Entry chaincode: name:"lscc" -peer0.org1.example.com | [063 01-09 08:57:06.18 UTC] [%{longpkg}] %{callpath} -> INFO building chaincode with ldflagsOpt: '-ldflags "-linkmode external -extldflags '-static'"' -peer0.org1.example.com | [064 01-09 08:57:42.42 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][2966997c] Exit chaincode: name:"lscc" (36295ms) -peer0.org1.example.com | [065 01-09 08:57:42.42 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T08:57:06.163Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.24.0.8:47256", "grpc.code": "OK", "grpc.call_duration": "36.2996233s"} -peer0.org1.example.com | [066 01-09 08:57:44.44 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Received block [3] from buffer -peer0.org1.example.com | [067 01-09 08:57:44.47 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Validated block [3] in 33ms -peer0.org1.example.com | [068 01-09 08:57:44.47 UTC] [%{longpkg}] %{callpath} -> INFO Channel [businesschannel]: Handling deploy or update of chaincode [exp02] -peer0.org1.example.com | [069 01-09 08:57:44.51 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Committed block [3] with 1 transaction(s) in 32ms (state_validation=3ms block_commit=18ms state_commit=6ms) -peer0.org1.example.com | [06a 01-09 08:58:19.54 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][6868fdb9] Entry chaincode: name:"exp02" -peer0.org1.example.com | [06b 01-09 08:58:19.55 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][6868fdb9] Exit chaincode: name:"exp02" (10ms) -peer0.org1.example.com | [06c 01-09 08:58:19.55 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T08:58:19.532Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.24.0.8:47324", "grpc.code": "OK", "grpc.call_duration": "20.8773ms"} -peer0.org1.example.com | [06d 01-09 08:58:21.57 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Received block [4] from buffer -peer0.org1.example.com | [06e 01-09 08:58:21.57 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Validated block [4] in 1ms -peer0.org1.example.com | [06f 01-09 08:58:21.60 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Committed block [4] with 1 transaction(s) in 26ms (state_validation=0ms block_commit=13ms state_commit=5ms) -peer0.org1.example.com | [070 01-09 08:58:22.31 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][a126cd3f] Entry chaincode: name:"exp02" -peer0.org1.example.com | [071 01-09 08:58:22.31 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][a126cd3f] Exit chaincode: name:"exp02" (3ms) -peer0.org1.example.com | [072 01-09 08:58:22.32 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T08:58:22.315Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.24.0.8:47344", "grpc.code": "OK", "grpc.call_duration": "5.3579ms"} -peer0.org1.example.com | [073 01-09 08:58:24.16 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Received block [5] from buffer -peer0.org1.example.com | [074 01-09 08:58:24.16 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Validated block [5] in 3ms -peer0.org1.example.com | [075 01-09 08:58:24.21 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Committed block [5] with 1 transaction(s) in 51ms (state_validation=12ms block_commit=27ms state_commit=5ms) -peer0.org1.example.com | [076 01-09 08:58:24.49 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][d8b42fdf] Entry chaincode: name:"exp02" -peer0.org1.example.com | [077 01-09 08:58:24.50 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][d8b42fdf] Exit chaincode: name:"exp02" (2ms) -peer0.org1.example.com | [078 01-09 08:58:24.50 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T08:58:24.498Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.24.0.8:47348", "grpc.code": "OK", "grpc.call_duration": "4.7383ms"} -peer0.org1.example.com | [079 01-09 08:58:25.11 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][f7cf4266] Entry chaincode: name:"lscc" -peer0.org1.example.com | [07a 01-09 08:58:25.11 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][f7cf4266] Exit chaincode: name:"lscc" (2ms) -peer0.org1.example.com | [07b 01-09 08:58:25.11 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T08:58:25.11Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.24.0.8:47354", "grpc.code": "OK", "grpc.call_duration": "3.9231ms"} -peer0.org1.example.com | [07c 01-09 08:58:25.35 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][b09cc223] Entry chaincode: name:"lscc" -peer0.org1.example.com | [07d 01-09 08:58:25.35 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][b09cc223] Exit chaincode: name:"lscc" (1ms) -peer0.org1.example.com | [07e 01-09 08:58:25.35 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T08:58:25.351Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.24.0.8:47358", "grpc.code": "OK", "grpc.call_duration": "4.3327ms"} -peer0.org1.example.com | [07f 01-09 08:58:25.59 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][ade79297] Entry chaincode: name:"lscc" -peer0.org1.example.com | [080 01-09 08:58:25.59 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][ade79297] Exit chaincode: name:"lscc" (3ms) -peer0.org1.example.com | [081 01-09 08:58:25.59 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T08:58:25.593Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.24.0.8:47362", "grpc.code": "OK", "grpc.call_duration": "4.3485ms"} -peer0.org1.example.com | [082 01-09 08:58:25.77 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][32eb5bbc] Entry chaincode: name:"lscc" -peer0.org1.example.com | [083 01-09 08:58:25.77 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][32eb5bbc] Exit chaincode: name:"lscc" (1ms) -peer0.org1.example.com | [084 01-09 08:58:25.77 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T08:58:25.769Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.24.0.8:47366", "grpc.code": "OK", "grpc.call_duration": "2.9624ms"} -peer0.org1.example.com | [085 01-09 08:58:25.95 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][19563660] Entry chaincode: name:"lscc" -peer0.org1.example.com | [086 01-09 08:58:25.96 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][19563660] Exit chaincode: name:"lscc" (3ms) -peer0.org1.example.com | [087 01-09 08:58:25.96 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T08:58:25.958Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.24.0.8:47372", "grpc.code": "OK", "grpc.call_duration": "5.6599ms"} -peer0.org1.example.com | [088 01-09 08:58:26.46 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][050705be] Entry chaincode: name:"qscc" -peer0.org1.example.com | [089 01-09 08:58:26.46 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][050705be] Exit chaincode: name:"qscc" (1ms) -peer0.org1.example.com | [08a 01-09 08:58:26.46 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T08:58:26.466Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.24.0.8:47376", "grpc.code": "OK", "grpc.call_duration": "2.7496ms"} -peer0.org1.example.com | [08b 01-09 08:58:26.69 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][6a279e36] Entry chaincode: name:"qscc" -peer0.org1.example.com | [08c 01-09 08:58:26.70 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][6a279e36] Exit chaincode: name:"qscc" (3ms) -peer0.org1.example.com | [08d 01-09 08:58:26.70 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T08:58:26.697Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.24.0.8:47380", "grpc.code": "OK", "grpc.call_duration": "5.4929ms"} -peer0.org1.example.com | [08e 01-09 08:58:27.26 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][2e9b163d] Entry chaincode: name:"cscc" -peer0.org1.example.com | [08f 01-09 08:58:27.26 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][2e9b163d] Exit chaincode: name:"cscc" (1ms) -peer0.org1.example.com | [090 01-09 08:58:27.26 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T08:58:27.26Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.24.0.8:47384", "grpc.code": "OK", "grpc.call_duration": "3.1536ms"} -peer0.org1.example.com | [091 01-09 08:58:28.59 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][7fde74c7] Entry chaincode: name:"cscc" -peer0.org1.example.com | [092 01-09 08:58:28.60 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][7fde74c7] Exit chaincode: name:"cscc" (1ms) -peer0.org1.example.com | [093 01-09 08:58:28.60 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T08:58:28.598Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.24.0.8:47388", "grpc.code": "OK", "grpc.call_duration": "2.2332ms"} -peer0.org1.example.com | [094 01-09 08:58:28.83 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][7930bb39] Entry chaincode: name:"cscc" -peer0.org1.example.com | [095 01-09 08:58:28.84 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][7930bb39] Exit chaincode: name:"cscc" (1ms) -peer0.org1.example.com | [096 01-09 08:58:28.84 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T08:58:28.838Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.24.0.8:47392", "grpc.code": "OK", "grpc.call_duration": "3.7664ms"} -peer0.org1.example.com | [097 01-09 08:58:38.35 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Received block [6] from buffer -peer0.org1.example.com | [098 01-09 08:58:38.36 UTC] [%{longpkg}] %{callpath} -> WARN De-duplicating identity [Org1MSP0270edfed53a78d7d3c66dc25737f57f956e48ef69dca5ecc91c26679dd4eff3] at index 2 in signature set -peer0.org2.example.com | [001 01-09 08:56:42.78 UTC] [%{longpkg}] %{callpath} -> INFO Starting peer: -orderer0.example.com | 2019-01-09 08:56:39.480 UTC [localconfig] completeInitialization -> INFO 001 Kafka.Version unset, setting to 0.10.2.0 -orderer0.example.com | [002 01-09 08:56:39.56 UTC] [%{longpkg}] %{callpath} -> INFO Orderer config values: -orderer0.example.com | General.LedgerType = "file" -orderer0.example.com | General.ListenAddress = "0.0.0.0" -orderer0.example.com | General.ListenPort = 7050 -orderer0.example.com | General.TLS.Enabled = true -orderer0.example.com | General.TLS.PrivateKey = "/var/hyperledger/orderer/tls/server.key" -orderer0.example.com | General.TLS.Certificate = "/var/hyperledger/orderer/tls/server.crt" -orderer0.example.com | General.TLS.RootCAs = [/var/hyperledger/orderer/tls/ca.crt] -orderer0.example.com | General.TLS.ClientAuthRequired = false -orderer0.example.com | General.TLS.ClientRootCAs = [] -orderer0.example.com | General.Cluster.RootCAs = [/etc/hyperledger/fabric/tls/ca.crt] -orderer0.example.com | General.Cluster.ClientCertificate = "" -orderer0.example.com | General.Cluster.ClientPrivateKey = "" -orderer0.example.com | General.Cluster.DialTimeout = 5s -orderer0.example.com | General.Cluster.RPCTimeout = 7s -orderer0.example.com | General.Cluster.ReplicationBufferSize = 20971520 -orderer0.example.com | General.Cluster.ReplicationPullTimeout = 5s -peer0.org1.example.com | [099 01-09 08:58:38.36 UTC] [%{longpkg}] %{callpath} -> WARN De-duplicating identity [Org1MSP0270edfed53a78d7d3c66dc25737f57f956e48ef69dca5ecc91c26679dd4eff3] at index 2 in signature set -peer0.org1.example.com | [09a 01-09 08:58:38.48 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T08:58:38.482Z", "grpc.service": "gossip.Gossip", "grpc.method": "Ping", "grpc.request_deadline": "2019-01-09T08:58:40.481Z", "grpc.peer_address": "172.24.0.3:55726", "grpc.peer_subject": "CN=peer0.org2.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "130.7µs"} -peer0.org1.example.com | [09b 01-09 08:58:38.48 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T08:58:38.487Z", "grpc.service": "gossip.Gossip", "grpc.method": "Ping", "grpc.request_deadline": "2019-01-09T08:58:40.485Z", "grpc.peer_address": "172.24.0.4:37124", "grpc.peer_subject": "CN=peer1.org1.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "168.9µs"} -peer0.org1.example.com | [09c 01-09 08:58:38.49 UTC] [%{longpkg}] %{callpath} -> INFO Joining gossip network of channel businesschannel with 3 organizations -peer0.org1.example.com | [09d 01-09 08:58:38.49 UTC] [%{longpkg}] %{callpath} -> INFO Learning about the configured anchor peers of Org1MSP for channel businesschannel : [{peer0.org1.example.com 7051}] -peer0.org1.example.com | [09e 01-09 08:58:38.49 UTC] [%{longpkg}] %{callpath} -> INFO Anchor peer with same endpoint, skipping connecting to myself -peer0.org1.example.com | [09f 01-09 08:58:38.49 UTC] [%{longpkg}] %{callpath} -> INFO Learning about the configured anchor peers of Org2MSP for channel businesschannel : [{peer0.org2.example.com 7051}] -peer0.org1.example.com | [0a0 01-09 08:58:38.49 UTC] [%{longpkg}] %{callpath} -> INFO No configured anchor peers of Org3MSP for channel businesschannel to learn about -peer0.org1.example.com | [0a1 01-09 08:58:38.50 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T08:58:38.507Z", "grpc.service": "gossip.Gossip", "grpc.method": "Ping", "grpc.request_deadline": "2019-01-09T08:58:40.507Z", "grpc.peer_address": "172.24.0.5:59212", "grpc.peer_subject": "CN=peer1.org2.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "206.6µs"} -peer0.org1.example.com | [0a2 01-09 08:58:38.51 UTC] [%{longpkg}] %{callpath} -> WARN peer1.org1.example.com:7051, PKIid:0be1e243940145f5e3af2c865fe319e551a303f3013dd34afa09d7f05c0653ca isn't responsive: rpc error: code = Unavailable desc = transport is closing -peer0.org1.example.com | [0a3 01-09 08:58:38.51 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T08:58:38.49Z", "grpc.service": "gossip.Gossip", "grpc.method": "GossipStream", "grpc.request_deadline": "2019-01-09T08:58:48.49Z", "grpc.peer_address": "172.24.0.4:37124", "grpc.peer_subject": "CN=peer1.org1.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "27.8213ms"} -peer0.org1.example.com | [0a4 01-09 08:58:38.52 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T08:56:58.562Z", "grpc.service": "gossip.Gossip", "grpc.method": "GossipStream", "grpc.peer_address": "172.24.0.4:36904", "grpc.peer_subject": "CN=peer1.org1.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "1m40.0650251s"} -peer0.org1.example.com | [0a5 01-09 08:58:38.52 UTC] [%{longpkg}] %{callpath} -> WARN Entering [0be1e243940145f5e3af2c865fe319e551a303f3013dd34afa09d7f05c0653ca] -peer0.org1.example.com | [0a6 01-09 08:58:38.52 UTC] [%{longpkg}] %{callpath} -> WARN Closing connection to Endpoint: peer1.org1.example.com:7051, InternalEndpoint: peer1.org1.example.com:7051, PKI-ID: 0be1e243940145f5e3af2c865fe319e551a303f3013dd34afa09d7f05c0653ca, Metadata: -peer0.org1.example.com | [0a7 01-09 08:58:38.53 UTC] [%{longpkg}] %{callpath} -> WARN Exiting -peer0.org1.example.com | [0a8 01-09 08:58:38.53 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T08:56:58.939Z", "grpc.service": "gossip.Gossip", "grpc.method": "GossipStream", "grpc.peer_address": "172.24.0.3:55516", "grpc.peer_subject": "CN=peer0.org2.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "1m39.6991747s"} -peer0.org1.example.com | [0a9 01-09 08:58:38.53 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T08:58:38.504Z", "grpc.service": "gossip.Gossip", "grpc.method": "GossipStream", "grpc.request_deadline": "2019-01-09T08:58:48.504Z", "grpc.peer_address": "172.24.0.3:55726", "grpc.peer_subject": "CN=peer0.org2.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "28.7302ms"} -peer0.org1.example.com | [0aa 01-09 08:58:38.53 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Validated block [6] in 179ms -peer0.org1.example.com | [0ab 01-09 08:58:38.54 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T08:56:58.868Z", "grpc.service": "gossip.Gossip", "grpc.method": "GossipStream", "grpc.peer_address": "172.24.0.5:58996", "grpc.peer_subject": "CN=peer1.org2.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "1m39.783359s"} -peer0.org1.example.com | [0ac 01-09 08:58:38.54 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T08:58:38.534Z", "grpc.service": "gossip.Gossip", "grpc.method": "GossipStream", "grpc.request_deadline": "2019-01-09T08:58:48.533Z", "grpc.peer_address": "172.24.0.5:59212", "grpc.peer_subject": "CN=peer1.org2.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "11.016ms"} -peer0.org1.example.com | [0ad 01-09 08:58:38.57 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Committed block [6] with 1 transaction(s) in 31ms (state_validation=1ms block_commit=23ms state_commit=3ms) -peer0.org1.example.com | [0ae 01-09 08:58:38.93 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T08:58:38.939Z", "grpc.service": "gossip.Gossip", "grpc.method": "Ping", "grpc.request_deadline": "2019-01-09T08:58:40.939Z", "grpc.peer_address": "172.24.0.4:37142", "grpc.peer_subject": "CN=peer1.org1.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "169.4µs"} -peer0.org1.example.com | [0af 01-09 08:58:48.60 UTC] [%{longpkg}] %{callpath} -> INFO [][72b60ef6] Entry chaincode: name:"cscc" -peer0.org1.example.com | [0b0 01-09 08:58:48.60 UTC] [%{longpkg}] %{callpath} -> INFO [][72b60ef6] Exit chaincode: name:"cscc" (1ms) -peer0.org1.example.com | [0b1 01-09 08:58:48.60 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T08:58:48.603Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.24.0.8:47494", "grpc.code": "OK", "grpc.call_duration": "2.1385ms"} -peer0.org1.example.com | [0b2 01-09 08:58:49.73 UTC] [%{longpkg}] %{callpath} -> INFO [][eb0b7079] Entry chaincode: name:"qscc" -peer0.org1.example.com | [0b3 01-09 08:58:49.73 UTC] [%{longpkg}] %{callpath} -> INFO [][eb0b7079] Exit chaincode: name:"qscc" (2ms) -peer0.org1.example.com | [0b4 01-09 08:58:49.73 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T08:58:49.734Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.24.0.8:47502", "grpc.code": "OK", "grpc.call_duration": "3.2676ms"} -peer1.org1.example.com | [001 01-09 08:56:42.81 UTC] [%{longpkg}] %{callpath} -> INFO Starting peer: -prometheus | level=info ts=2019-01-09T08:56:44.6502648Z caller=main.go:243 msg="Starting Prometheus" version="(version=2.6.0, branch=HEAD, revision=dbd1d58c894775c0788470944b818cc724f550fb)" -peer1.org1.example.com | Version: 1.4.0-rc1 -peer0.org2.example.com | Version: 1.4.0-rc1 -orderer0.example.com | General.Cluster.ReplicationRetryTimeout = 5s -orderer0.example.com | General.Keepalive.ServerMinInterval = 1m0s -orderer0.example.com | General.Keepalive.ServerInterval = 2h0m0s -orderer0.example.com | General.Keepalive.ServerTimeout = 20s -orderer0.example.com | General.GenesisMethod = "file" -prometheus | level=info ts=2019-01-09T08:56:44.6519974Z caller=main.go:244 build_context="(go=go1.11.3, user=root@bf5760470f13, date=20181217-15:14:46)" -prometheus | level=info ts=2019-01-09T08:56:44.6523056Z caller=main.go:245 host_details="(Linux 4.9.93-linuxkit-aufs #1 SMP Wed Jun 6 16:55:56 UTC 2018 x86_64 prometheus (none))" -prometheus | level=info ts=2019-01-09T08:56:44.6525357Z caller=main.go:246 fd_limits="(soft=1048576, hard=1048576)" -prometheus | level=info ts=2019-01-09T08:56:44.6528613Z caller=main.go:247 vm_limits="(soft=unlimited, hard=unlimited)" -prometheus | level=info ts=2019-01-09T08:56:44.6563481Z caller=web.go:429 component=web msg="Start listening for connections" address=0.0.0.0:9090 -prometheus | level=info ts=2019-01-09T08:56:44.6574451Z caller=main.go:561 msg="Starting TSDB ..." -prometheus | level=info ts=2019-01-09T08:56:44.6902947Z caller=main.go:571 msg="TSDB started" +peer0.org1.example.com | [002 03-12 01:56:13.66 UTC] [%{longpkg}] %{callpath} -> INFO Initializing ledger mgmt +peer0.org1.example.com | [003 03-12 01:56:13.66 UTC] [%{longpkg}] %{callpath} -> INFO Initializing ledger provider +peer0.org1.example.com | [004 03-12 01:56:13.73 UTC] [%{longpkg}] %{callpath} -> INFO ledger provider Initialized +peer0.org1.example.com | [005 03-12 01:56:13.79 UTC] [%{longpkg}] %{callpath} -> INFO ledger mgmt initialized +peer0.org1.example.com | [006 03-12 01:56:13.79 UTC] [%{longpkg}] %{callpath} -> INFO Auto-detected peer address: 172.28.0.7:7051 +peer0.org1.example.com | [007 03-12 01:56:13.79 UTC] [%{longpkg}] %{callpath} -> INFO Returning peer0.org1.example.com:7051 +peer0.org1.example.com | [008 03-12 01:56:13.79 UTC] [%{longpkg}] %{callpath} -> INFO Auto-detected peer address: 172.28.0.7:7051 +peer0.org1.example.com | [009 03-12 01:56:13.79 UTC] [%{longpkg}] %{callpath} -> INFO Returning peer0.org1.example.com:7051 +peer0.org1.example.com | [00a 03-12 01:56:13.82 UTC] [%{longpkg}] %{callpath} -> INFO Starting peer with TLS enabled +peer0.org1.example.com | [00b 03-12 01:56:13.83 UTC] [%{longpkg}] %{callpath} -> INFO Entering computeChaincodeEndpoint with peerHostname: peer0.org1.example.com +peer0.org1.example.com | [00c 03-12 01:56:13.83 UTC] [%{longpkg}] %{callpath} -> INFO Exit with ccEndpoint: peer0.org1.example.com:7052 +peer0.org1.example.com | [00d 03-12 01:56:13.85 UTC] [%{longpkg}] %{callpath} -> INFO system chaincode lscc(github.com/hyperledger/fabric/core/scc/lscc) registered +peer0.org1.example.com | [00e 03-12 01:56:13.85 UTC] [%{longpkg}] %{callpath} -> INFO system chaincode cscc(github.com/hyperledger/fabric/core/scc/cscc) registered +peer0.org1.example.com | [00f 03-12 01:56:13.85 UTC] [%{longpkg}] %{callpath} -> INFO system chaincode qscc(github.com/hyperledger/fabric/core/scc/qscc) registered +peer0.org1.example.com | [010 03-12 01:56:13.85 UTC] [%{longpkg}] %{callpath} -> INFO system chaincode (+lifecycle,github.com/hyperledger/fabric/core/chaincode/lifecycle,true) disabled +peer0.org1.example.com | [011 03-12 01:56:13.87 UTC] [%{longpkg}] %{callpath} -> INFO Initialize gossip with endpoint peer0.org1.example.com:7051 and bootstrap set [127.0.0.1:7051] +peer0.org1.example.com | [012 03-12 01:56:13.88 UTC] [%{longpkg}] %{callpath} -> INFO Creating gossip service with self membership of Endpoint: peer0.org1.example.com:7051, InternalEndpoint: peer0.org1.example.com:7051, PKI-ID: 3d21b0bc142d8ddae3c27797c0c2bf16b05e0414b227484fdbfabf9859231106, Metadata: +peer0.org1.example.com | [013 03-12 01:56:13.89 UTC] [%{longpkg}] %{callpath} -> INFO Gossip instance peer0.org1.example.com:7051 started +peer0.org1.example.com | [014 03-12 01:56:13.91 UTC] [%{longpkg}] %{callpath} -> INFO system chaincode lscc/(github.com/hyperledger/fabric/core/scc/lscc) deployed +peer0.org1.example.com | [015 03-12 01:56:13.91 UTC] [%{longpkg}] %{callpath} -> INFO Init CSCC +peer0.org1.example.com | [016 03-12 01:56:13.91 UTC] [%{longpkg}] %{callpath} -> INFO system chaincode cscc/(github.com/hyperledger/fabric/core/scc/cscc) deployed +peer0.org1.example.com | [017 03-12 01:56:13.92 UTC] [%{longpkg}] %{callpath} -> INFO Init QSCC +peer0.org1.example.com | [018 03-12 01:56:13.92 UTC] [%{longpkg}] %{callpath} -> INFO system chaincode qscc/(github.com/hyperledger/fabric/core/scc/qscc) deployed +peer0.org1.example.com | [019 03-12 01:56:13.92 UTC] [%{longpkg}] %{callpath} -> INFO system chaincode (+lifecycle,github.com/hyperledger/fabric/core/chaincode/lifecycle) disabled +peer0.org1.example.com | [01a 03-12 01:56:13.92 UTC] [%{longpkg}] %{callpath} -> INFO Deployed system chaincodes +peer0.org1.example.com | [01b 03-12 01:56:13.92 UTC] [%{longpkg}] %{callpath} -> INFO Created with config TLS: true, authCacheMaxSize: 1000, authCachePurgeRatio: 0.750000 +peer0.org1.example.com | [01c 03-12 01:56:13.92 UTC] [%{longpkg}] %{callpath} -> INFO Discovery service activated +peer0.org1.example.com | [01d 03-12 01:56:13.92 UTC] [%{longpkg}] %{callpath} -> INFO Starting peer with ID=[name:"peer0.org1.example.com" ], network ID=[dev], address=[peer0.org1.example.com:7051] +peer0.org1.example.com | [01e 03-12 01:56:13.92 UTC] [%{longpkg}] %{callpath} -> INFO Started peer with ID=[name:"peer0.org1.example.com" ], network ID=[dev], address=[peer0.org1.example.com:7051] +peer0.org1.example.com | [01f 03-12 01:56:15.02 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-03-12T01:56:15.022Z", "grpc.service": "gossip.Gossip", "grpc.method": "Ping", "grpc.request_deadline": "2019-03-12T01:56:17.021Z", "grpc.peer_address": "172.28.0.5:45012", "grpc.peer_subject": "CN=peer1.org1.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "255.4µs"} +peer0.org1.example.com | [020 03-12 01:56:15.04 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-03-12T01:56:15.024Z", "grpc.service": "gossip.Gossip", "grpc.method": "GossipStream", "grpc.request_deadline": "2019-03-12T01:56:25.024Z", "grpc.peer_address": "172.28.0.5:45012", "grpc.peer_subject": "CN=peer1.org1.example.com,L=San Francisco,ST=California,C=US", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "18.1413ms"} +peer0.org1.example.com | [021 03-12 01:56:15.06 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-03-12T01:56:15.06Z", "grpc.service": "gossip.Gossip", "grpc.method": "Ping", "grpc.request_deadline": "2019-03-12T01:56:17.059Z", "grpc.peer_address": "172.28.0.5:45014", "grpc.peer_subject": "CN=peer1.org1.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "348.5µs"} +peer0.org1.example.com | [022 03-12 01:56:21.79 UTC] [%{longpkg}] %{callpath} -> INFO [][e966e0d6] Entry chaincode: name:"cscc" +peer0.org1.example.com | [023 03-12 01:56:21.80 UTC] [%{longpkg}] %{callpath} -> INFO Creating ledger [businesschannel] with genesis block +peer0.org1.example.com | [024 03-12 01:56:21.80 UTC] [%{longpkg}] %{callpath} -> INFO Getting block information from block storage +peer0.org1.example.com | [025 03-12 01:56:21.83 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Committed block [0] with 1 transaction(s) in 20ms (state_validation=6ms block_commit=8ms state_commit=3ms) +peer0.org1.example.com | [026 03-12 01:56:21.83 UTC] [%{longpkg}] %{callpath} -> INFO Created ledger [businesschannel] with genesis block +peer0.org1.example.com | [027 03-12 01:56:21.84 UTC] [%{longpkg}] %{callpath} -> INFO Joining gossip network of channel businesschannel with 2 organizations +peer0.org1.example.com | [028 03-12 01:56:21.84 UTC] [%{longpkg}] %{callpath} -> INFO No configured anchor peers of Org1MSP for channel businesschannel to learn about +peer0.org1.example.com | [029 03-12 01:56:21.84 UTC] [%{longpkg}] %{callpath} -> INFO No configured anchor peers of Org2MSP for channel businesschannel to learn about +peer0.org1.example.com | [02a 03-12 01:56:21.87 UTC] [%{longpkg}] %{callpath} -> INFO Updating metadata information, current ledger sequence is at = 0, next expected block is = 1 +peer0.org1.example.com | [02b 03-12 01:56:21.87 UTC] [%{longpkg}] %{callpath} -> INFO system chaincode lscc/businesschannel(github.com/hyperledger/fabric/core/scc/lscc) deployed +peer0.org1.example.com | [02c 03-12 01:56:21.87 UTC] [%{longpkg}] %{callpath} -> INFO Init CSCC +peer0.org1.example.com | [02d 03-12 01:56:21.87 UTC] [%{longpkg}] %{callpath} -> INFO system chaincode cscc/businesschannel(github.com/hyperledger/fabric/core/scc/cscc) deployed +peer0.org1.example.com | [02e 03-12 01:56:21.87 UTC] [%{longpkg}] %{callpath} -> INFO Init QSCC +peer0.org1.example.com | [02f 03-12 01:56:21.87 UTC] [%{longpkg}] %{callpath} -> INFO system chaincode qscc/businesschannel(github.com/hyperledger/fabric/core/scc/qscc) deployed +peer0.org1.example.com | [030 03-12 01:56:21.87 UTC] [%{longpkg}] %{callpath} -> INFO system chaincode (+lifecycle,github.com/hyperledger/fabric/core/chaincode/lifecycle) disabled +peer0.org1.example.com | [031 03-12 01:56:21.87 UTC] [%{longpkg}] %{callpath} -> INFO [][e966e0d6] Exit chaincode: name:"cscc" (81ms) +peer0.org1.example.com | [032 03-12 01:56:21.87 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-03-12T01:56:21.797Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.28.0.3:37332", "grpc.code": "OK", "grpc.call_duration": "82.3803ms"} +peer0.org1.example.com | [033 03-12 01:56:23.27 UTC] [%{longpkg}] %{callpath} -> INFO [][84638576] Entry chaincode: name:"cscc" +peer0.org1.example.com | [034 03-12 01:56:23.27 UTC] [%{longpkg}] %{callpath} -> INFO [][84638576] Exit chaincode: name:"cscc" (1ms) +peer0.org1.example.com | [035 03-12 01:56:23.27 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-03-12T01:56:23.272Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.28.0.3:37340", "grpc.code": "OK", "grpc.call_duration": "2.2284ms"} +peer0.org1.example.com | [036 03-12 01:56:24.32 UTC] [%{longpkg}] %{callpath} -> INFO [][6fedd1de] Entry chaincode: name:"qscc" +peer0.org1.example.com | [037 03-12 01:56:24.32 UTC] [%{longpkg}] %{callpath} -> INFO [][6fedd1de] Exit chaincode: name:"qscc" (2ms) +peer0.org1.example.com | [038 03-12 01:56:24.32 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-03-12T01:56:24.32Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.28.0.3:37348", "grpc.code": "OK", "grpc.call_duration": "2.7527ms"} +peer0.org1.example.com | [039 03-12 01:56:26.84 UTC] [%{longpkg}] %{callpath} -> INFO Membership view has changed. peers went online: [[peer1.org1.example.com:7051]] , current view: [[peer1.org1.example.com:7051]] +peer0.org1.example.com | [03a 03-12 01:56:27.87 UTC] [%{longpkg}] %{callpath} -> INFO 3d21b0bc142d8ddae3c27797c0c2bf16b05e0414b227484fdbfabf9859231106 : Becoming a leader +peer0.org1.example.com | [03b 03-12 01:56:27.87 UTC] [%{longpkg}] %{callpath} -> INFO Elected as a leader, starting delivery service for channel businesschannel +peer0.org1.example.com | [03c 03-12 01:56:27.90 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Received block [1] from buffer +peer0.org1.example.com | [03d 03-12 01:56:27.91 UTC] [%{longpkg}] %{callpath} -> INFO Joining gossip network of channel businesschannel with 2 organizations +peer0.org1.example.com | [03e 03-12 01:56:27.91 UTC] [%{longpkg}] %{callpath} -> INFO No configured anchor peers of Org2MSP for channel businesschannel to learn about +peer0.org1.example.com | [03f 03-12 01:56:27.91 UTC] [%{longpkg}] %{callpath} -> INFO Learning about the configured anchor peers of Org1MSP for channel businesschannel : [{peer0.org1.example.com 7051}] +peer0.org1.example.com | [040 03-12 01:56:27.91 UTC] [%{longpkg}] %{callpath} -> INFO Anchor peer with same endpoint, skipping connecting to myself +peer0.org1.example.com | [041 03-12 01:56:27.93 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Validated block [1] in 29ms +peer0.org1.example.com | [042 03-12 01:56:27.95 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Committed block [1] with 1 transaction(s) in 20ms (state_validation=1ms block_commit=9ms state_commit=6ms) +peer0.org1.example.com | [043 03-12 01:56:27.95 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Received block [2] from buffer +peer0.org1.example.com | [044 03-12 01:56:27.95 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-03-12T01:56:27.956Z", "grpc.service": "gossip.Gossip", "grpc.method": "Ping", "grpc.request_deadline": "2019-03-12T01:56:29.956Z", "grpc.peer_address": "172.28.0.5:45062", "grpc.peer_subject": "CN=peer1.org1.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "121.9µs"} +peer0.org1.example.com | [045 03-12 01:56:27.96 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-03-12T01:56:15.066Z", "grpc.service": "gossip.Gossip", "grpc.method": "GossipStream", "grpc.peer_address": "172.28.0.5:45014", "grpc.peer_subject": "CN=peer1.org1.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "12.9290103s"} +peer0.org1.example.com | [046 03-12 01:56:27.96 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-03-12T01:56:27.959Z", "grpc.service": "gossip.Gossip", "grpc.method": "GossipStream", "grpc.request_deadline": "2019-03-12T01:56:37.958Z", "grpc.peer_address": "172.28.0.5:45062", "grpc.peer_subject": "CN=peer1.org1.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "5.0605ms"} +peer0.org1.example.com | [047 03-12 01:56:27.98 UTC] [%{longpkg}] %{callpath} -> INFO Joining gossip network of channel businesschannel with 2 organizations +peer0.org1.example.com | [048 03-12 01:56:27.98 UTC] [%{longpkg}] %{callpath} -> INFO Learning about the configured anchor peers of Org2MSP for channel businesschannel : [{peer0.org2.example.com 7051}] +peer0.org1.example.com | [049 03-12 01:56:27.98 UTC] [%{longpkg}] %{callpath} -> INFO Learning about the configured anchor peers of Org1MSP for channel businesschannel : [{peer0.org1.example.com 7051}] +peer0.org1.example.com | [04a 03-12 01:56:27.98 UTC] [%{longpkg}] %{callpath} -> INFO Anchor peer with same endpoint, skipping connecting to myself +peer0.org1.example.com | [04b 03-12 01:56:28.00 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Validated block [2] in 48ms +peer0.org1.example.com | [04c 03-12 01:56:28.06 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Committed block [2] with 1 transaction(s) in 65ms (state_validation=14ms block_commit=26ms state_commit=21ms) +peer0.org1.example.com | [04d 03-12 01:56:28.07 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-03-12T01:56:28.077Z", "grpc.service": "gossip.Gossip", "grpc.method": "Ping", "grpc.request_deadline": "2019-03-12T01:56:30.077Z", "grpc.peer_address": "172.28.0.5:45070", "grpc.peer_subject": "CN=peer1.org1.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "143.6µs"} +peer0.org1.example.com | [04e 03-12 01:56:28.09 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-03-12T01:56:28.081Z", "grpc.service": "gossip.Gossip", "grpc.method": "GossipStream", "grpc.request_deadline": "2019-03-12T01:56:38.081Z", "grpc.peer_address": "172.28.0.5:45070", "grpc.peer_subject": "CN=peer1.org1.example.com,L=San Francisco,ST=California,C=US", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "9.7627ms"} +peer0.org1.example.com | [04f 03-12 01:56:28.10 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-03-12T01:56:28.101Z", "grpc.service": "gossip.Gossip", "grpc.method": "Ping", "grpc.request_deadline": "2019-03-12T01:56:30.099Z", "grpc.peer_address": "172.28.0.5:45074", "grpc.peer_subject": "CN=peer1.org1.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "145.7µs"} +peer0.org1.example.com | [050 03-12 01:56:28.44 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-03-12T01:56:28.44Z", "grpc.service": "gossip.Gossip", "grpc.method": "Ping", "grpc.request_deadline": "2019-03-12T01:56:30.44Z", "grpc.peer_address": "172.28.0.6:43766", "grpc.peer_subject": "CN=peer0.org2.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "123µs"} +peer0.org1.example.com | [051 03-12 01:56:28.45 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-03-12T01:56:28.442Z", "grpc.service": "gossip.Gossip", "grpc.method": "GossipStream", "grpc.request_deadline": "2019-03-12T01:56:38.442Z", "grpc.peer_address": "172.28.0.6:43766", "grpc.peer_subject": "CN=peer0.org2.example.com,L=San Francisco,ST=California,C=US", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "16.2589ms"} +peer0.org1.example.com | [052 03-12 01:56:28.47 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-03-12T01:56:28.473Z", "grpc.service": "gossip.Gossip", "grpc.method": "Ping", "grpc.request_deadline": "2019-03-12T01:56:30.472Z", "grpc.peer_address": "172.28.0.6:43768", "grpc.peer_subject": "CN=peer0.org2.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "127.1µs"} +peer0.org1.example.com | [053 03-12 01:56:28.52 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-03-12T01:56:28.528Z", "grpc.service": "gossip.Gossip", "grpc.method": "Ping", "grpc.request_deadline": "2019-03-12T01:56:30.527Z", "grpc.peer_address": "172.28.0.6:43770", "grpc.peer_subject": "CN=peer0.org2.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "116.7µs"} +peer0.org1.example.com | [054 03-12 01:56:28.53 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-03-12T01:56:28.475Z", "grpc.service": "gossip.Gossip", "grpc.method": "GossipStream", "grpc.peer_address": "172.28.0.6:43768", "grpc.peer_subject": "CN=peer0.org2.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "57.3832ms"} +peer0.org1.example.com | [055 03-12 01:56:28.53 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-03-12T01:56:28.53Z", "grpc.service": "gossip.Gossip", "grpc.method": "GossipStream", "grpc.request_deadline": "2019-03-12T01:56:38.529Z", "grpc.peer_address": "172.28.0.6:43770", "grpc.peer_subject": "CN=peer0.org2.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "4.4206ms"} +peer0.org1.example.com | [056 03-12 01:56:28.69 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-03-12T01:56:28.696Z", "grpc.service": "gossip.Gossip", "grpc.method": "Ping", "grpc.request_deadline": "2019-03-12T01:56:30.696Z", "grpc.peer_address": "172.28.0.4:44822", "grpc.peer_subject": "CN=peer1.org2.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "156.7µs"} +peer0.org1.example.com | [057 03-12 01:56:28.71 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-03-12T01:56:28.703Z", "grpc.service": "gossip.Gossip", "grpc.method": "GossipStream", "grpc.request_deadline": "2019-03-12T01:56:38.702Z", "grpc.peer_address": "172.28.0.4:44822", "grpc.peer_subject": "CN=peer1.org2.example.com,L=San Francisco,ST=California,C=US", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "9.2954ms"} +peer0.org1.example.com | [058 03-12 01:56:28.72 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-03-12T01:56:28.72Z", "grpc.service": "gossip.Gossip", "grpc.method": "Ping", "grpc.request_deadline": "2019-03-12T01:56:30.72Z", "grpc.peer_address": "172.28.0.4:44824", "grpc.peer_subject": "CN=peer1.org2.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "139.3µs"} +peer0.org1.example.com | [059 03-12 01:56:28.78 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-03-12T01:56:28.787Z", "grpc.service": "gossip.Gossip", "grpc.method": "Ping", "grpc.request_deadline": "2019-03-12T01:56:30.787Z", "grpc.peer_address": "172.28.0.4:44828", "grpc.peer_subject": "CN=peer1.org2.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "125.7µs"} +peer0.org1.example.com | [05a 03-12 01:56:28.81 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-03-12T01:56:28.728Z", "grpc.service": "gossip.Gossip", "grpc.method": "GossipStream", "grpc.peer_address": "172.28.0.4:44824", "grpc.peer_subject": "CN=peer1.org2.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "82.2139ms"} +peer0.org1.example.com | [05b 03-12 01:56:28.81 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-03-12T01:56:28.806Z", "grpc.service": "gossip.Gossip", "grpc.method": "GossipStream", "grpc.request_deadline": "2019-03-12T01:56:38.805Z", "grpc.peer_address": "172.28.0.4:44828", "grpc.peer_subject": "CN=peer1.org2.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "5.1816ms"} +peer0.org1.example.com | [05c 03-12 01:56:28.91 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-03-12T01:56:28.917Z", "grpc.service": "gossip.Gossip", "grpc.method": "Ping", "grpc.request_deadline": "2019-03-12T01:56:30.917Z", "grpc.peer_address": "172.28.0.4:44836", "grpc.peer_subject": "CN=peer1.org2.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "122.6µs"} +peer0.org1.example.com | [05d 03-12 01:56:28.92 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-03-12T01:56:28.918Z", "grpc.service": "gossip.Gossip", "grpc.method": "GossipStream", "grpc.peer_address": "172.28.0.4:44836", "grpc.peer_subject": "CN=peer1.org2.example.com,L=San Francisco,ST=California,C=US", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "4.7494ms"} +peer0.org1.example.com | [05e 03-12 01:56:29.90 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-03-12T01:56:29.904Z", "grpc.service": "gossip.Gossip", "grpc.method": "Ping", "grpc.request_deadline": "2019-03-12T01:56:31.902Z", "grpc.peer_address": "172.28.0.4:44838", "grpc.peer_subject": "CN=peer1.org2.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "134.4µs"} +peer0.org1.example.com | [05f 03-12 01:56:29.96 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-03-12T01:56:29.928Z", "grpc.service": "gossip.Gossip", "grpc.method": "GossipStream", "grpc.peer_address": "172.28.0.4:44838", "grpc.peer_subject": "CN=peer1.org2.example.com,L=San Francisco,ST=California,C=US", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "35.0208ms"} +peer0.org1.example.com | [060 03-12 01:56:29.97 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-03-12T01:56:29.975Z", "grpc.service": "gossip.Gossip", "grpc.method": "Ping", "grpc.request_deadline": "2019-03-12T01:56:31.975Z", "grpc.peer_address": "172.28.0.4:44842", "grpc.peer_subject": "CN=peer1.org2.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "120.9µs"} +peer0.org1.example.com | [061 03-12 01:56:30.71 UTC] [%{longpkg}] %{callpath} -> INFO [][58608a6c] Entry chaincode: name:"lscc" +peer0.org1.example.com | [062 03-12 01:56:30.72 UTC] [%{longpkg}] %{callpath} -> INFO Installed Chaincode [exp02] Version [1.0] to peer +peer0.org1.example.com | [063 03-12 01:56:30.72 UTC] [%{longpkg}] %{callpath} -> INFO [][58608a6c] Exit chaincode: name:"lscc" (2ms) +peer0.org1.example.com | [064 03-12 01:56:30.72 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-03-12T01:56:30.718Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.28.0.3:37416", "grpc.code": "OK", "grpc.call_duration": "3.5013ms"} +peer0.org1.example.com | [065 03-12 01:56:31.84 UTC] [%{longpkg}] %{callpath} -> INFO Membership view has changed. peers went online: [[peer0.org2.example.com:7051 ] [peer1.org2.example.com:7051 ]] , current view: [[peer1.org1.example.com:7051] [peer0.org2.example.com:7051 ] [peer1.org2.example.com:7051 ]] +peer0.org1.example.com | [066 03-12 01:56:33.64 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][b573dda2] Entry chaincode: name:"lscc" +peer0.org1.example.com | [067 03-12 01:56:33.65 UTC] [%{longpkg}] %{callpath} -> INFO building chaincode with ldflagsOpt: '-ldflags "-linkmode external -extldflags '-static'"' +peer0.org1.example.com | [068 03-12 01:57:11.23 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][b573dda2] Exit chaincode: name:"lscc" (37624ms) +peer0.org1.example.com | [069 03-12 01:57:11.23 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-03-12T01:56:33.639Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.28.0.3:37440", "grpc.code": "OK", "grpc.call_duration": "37.6271953s"} +peer0.org1.example.com | [06a 03-12 01:57:13.24 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Received block [3] from buffer +peer0.org1.example.com | [06b 03-12 01:57:13.26 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Validated block [3] in 11ms +peer0.org1.example.com | [06c 03-12 01:57:13.27 UTC] [%{longpkg}] %{callpath} -> INFO Channel [businesschannel]: Handling deploy or update of chaincode [exp02] +peer0.org1.example.com | [06d 03-12 01:57:13.30 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Committed block [3] with 1 transaction(s) in 25ms (state_validation=3ms block_commit=14ms state_commit=3ms) +peer0.org1.example.com | [06e 03-12 01:57:48.88 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][bc7522f9] Entry chaincode: name:"exp02" +peer0.org1.example.com | [06f 03-12 01:57:48.88 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][bc7522f9] Exit chaincode: name:"exp02" (5ms) +peer0.org1.example.com | [070 03-12 01:57:48.88 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-03-12T01:57:48.878Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.28.0.3:37512", "grpc.code": "OK", "grpc.call_duration": "8.0947ms"} +peer0.org1.example.com | [071 03-12 01:57:50.86 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Received block [4] from buffer +peer0.org1.example.com | [072 03-12 01:57:50.87 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Validated block [4] in 1ms +peer0.org1.example.com | [073 03-12 01:57:50.90 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Committed block [4] with 1 transaction(s) in 26ms (state_validation=0ms block_commit=17ms state_commit=5ms) +peer0.org1.example.com | [074 03-12 01:57:51.60 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][58e66202] Entry chaincode: name:"exp02" +peer0.org1.example.com | [075 03-12 01:57:51.60 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][58e66202] Exit chaincode: name:"exp02" (2ms) +peer0.org1.example.com | [076 03-12 01:57:51.60 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-03-12T01:57:51.602Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.28.0.3:37532", "grpc.code": "OK", "grpc.call_duration": "5.4381ms"} +peer0.org1.example.com | [077 03-12 01:57:53.43 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Received block [5] from buffer +peer0.org1.example.com | [078 03-12 01:57:53.45 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Validated block [5] in 19ms +peer0.org1.example.com | [079 03-12 01:57:53.47 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Committed block [5] with 1 transaction(s) in 15ms (state_validation=1ms block_commit=10ms state_commit=2ms) +peer0.org1.example.com | [07a 03-12 01:57:53.82 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][81207daf] Entry chaincode: name:"exp02" +peer0.org1.example.com | [07b 03-12 01:57:53.82 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][81207daf] Exit chaincode: name:"exp02" (3ms) +peer0.org1.example.com | [07c 03-12 01:57:53.82 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-03-12T01:57:53.823Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.28.0.3:37536", "grpc.code": "OK", "grpc.call_duration": "5.6449ms"} +peer0.org1.example.com | [07d 03-12 01:57:54.27 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][14a3ea89] Entry chaincode: name:"lscc" +peer0.org1.example.com | [07e 03-12 01:57:54.27 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][14a3ea89] Exit chaincode: name:"lscc" (1ms) +peer0.org1.example.com | [07f 03-12 01:57:54.27 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-03-12T01:57:54.274Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.28.0.3:37540", "grpc.code": "OK", "grpc.call_duration": "3.8092ms"} +peer0.org1.example.com | [080 03-12 01:57:54.41 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][959c1a31] Entry chaincode: name:"lscc" +peer0.org1.example.com | [081 03-12 01:57:54.42 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][959c1a31] Exit chaincode: name:"lscc" (1ms) +peer0.org1.example.com | [082 03-12 01:57:54.42 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-03-12T01:57:54.417Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.28.0.3:37544", "grpc.code": "OK", "grpc.call_duration": "3.9189ms"} +peer0.org1.example.com | [083 03-12 01:57:54.57 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][44069c26] Entry chaincode: name:"lscc" +peer0.org1.example.com | [084 03-12 01:57:54.58 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][44069c26] Exit chaincode: name:"lscc" (3ms) +peer0.org1.example.com | [085 03-12 01:57:54.58 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-03-12T01:57:54.578Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.28.0.3:37548", "grpc.code": "OK", "grpc.call_duration": "5.7204ms"} +peer0.org1.example.com | [086 03-12 01:57:54.74 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][c09318f4] Entry chaincode: name:"lscc" +peer0.org1.example.com | [087 03-12 01:57:54.75 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][c09318f4] Exit chaincode: name:"lscc" (1ms) +peer0.org1.example.com | [088 03-12 01:57:54.75 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-03-12T01:57:54.747Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.28.0.3:37554", "grpc.code": "OK", "grpc.call_duration": "3.153ms"} +peer0.org1.example.com | [089 03-12 01:57:54.90 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][87d8c6a1] Entry chaincode: name:"lscc" +peer0.org1.example.com | [08a 03-12 01:57:54.90 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][87d8c6a1] Exit chaincode: name:"lscc" (3ms) +peer0.org1.example.com | [08b 03-12 01:57:54.90 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-03-12T01:57:54.903Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.28.0.3:37558", "grpc.code": "OK", "grpc.call_duration": "5.5093ms"} +peer0.org1.example.com | [08c 03-12 01:57:55.33 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][de3b862c] Entry chaincode: name:"qscc" +peer0.org1.example.com | [08d 03-12 01:57:55.33 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][de3b862c] Exit chaincode: name:"qscc" (2ms) +peer0.org1.example.com | [08e 03-12 01:57:55.33 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-03-12T01:57:55.33Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.28.0.3:37562", "grpc.code": "OK", "grpc.call_duration": "3.8585ms"} +peer0.org1.example.com | [08f 03-12 01:57:55.52 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][ec4bb5ce] Entry chaincode: name:"qscc" +peer0.org1.example.com | [090 03-12 01:57:55.52 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][ec4bb5ce] Exit chaincode: name:"qscc" (2ms) +peer0.org1.example.com | [091 03-12 01:57:55.52 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-03-12T01:57:55.519Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.28.0.3:37566", "grpc.code": "OK", "grpc.call_duration": "4.6586ms"} +peer0.org1.example.com | [092 03-12 01:57:55.95 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][55b9c017] Entry chaincode: name:"cscc" +prometheus | level=info ts=2019-03-12T01:56:15.6407825Z caller=main.go:631 msg="Loading configuration file" filename=prometheus.yml +prometheus | level=info ts=2019-03-12T01:56:15.6495467Z caller=main.go:657 msg="Completed loading of configuration file" filename=prometheus.yml +prometheus | level=info ts=2019-03-12T01:56:15.6497144Z caller=main.go:530 msg="Server is ready to receive web requests." +peer0.org1.example.com | [093 03-12 01:57:55.95 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][55b9c017] Exit chaincode: name:"cscc" (1ms) +peer0.org1.example.com | [094 03-12 01:57:55.95 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-03-12T01:57:55.956Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.28.0.3:37572", "grpc.code": "OK", "grpc.call_duration": "2.5838ms"} +peer0.org1.example.com | [095 03-12 01:57:56.13 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][47e0dba7] Entry chaincode: name:"cscc" +peer0.org1.example.com | [096 03-12 01:57:56.13 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][47e0dba7] Exit chaincode: name:"cscc" (0ms) +peer0.org1.example.com | [097 03-12 01:57:56.13 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-03-12T01:57:56.131Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.28.0.3:37576", "grpc.code": "OK", "grpc.call_duration": "3.1002ms"} +peer0.org1.example.com | [098 03-12 01:57:56.28 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][be88e672] Entry chaincode: name:"cscc" +peer0.org1.example.com | [099 03-12 01:57:56.29 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][be88e672] Exit chaincode: name:"cscc" (2ms) +peer0.org1.example.com | [09a 03-12 01:57:56.29 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-03-12T01:57:56.286Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.28.0.3:37580", "grpc.code": "OK", "grpc.call_duration": "4.2644ms"} +peer0.org1.example.com | [09b 03-12 01:58:05.15 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Received block [6] from buffer +peer0.org1.example.com | [09c 03-12 01:58:05.15 UTC] [%{longpkg}] %{callpath} -> WARN De-duplicating identity [Org1MSP0270edfed53a78d7d3c66dc25737f57f956e48ef69dca5ecc91c26679dd4eff3] at index 2 in signature set +peer0.org1.example.com | [09d 03-12 01:58:05.16 UTC] [%{longpkg}] %{callpath} -> WARN De-duplicating identity [Org1MSP0270edfed53a78d7d3c66dc25737f57f956e48ef69dca5ecc91c26679dd4eff3] at index 2 in signature set +peer0.org1.example.com | [09e 03-12 01:58:05.24 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-03-12T01:58:05.242Z", "grpc.service": "gossip.Gossip", "grpc.method": "Ping", "grpc.request_deadline": "2019-03-12T01:58:07.239Z", "grpc.peer_address": "172.28.0.6:43998", "grpc.peer_subject": "CN=peer0.org2.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "123.1µs"} +peer0.org1.example.com | [09f 03-12 01:58:05.24 UTC] [%{longpkg}] %{callpath} -> INFO Joining gossip network of channel businesschannel with 3 organizations +peer0.org1.example.com | [0a0 03-12 01:58:05.24 UTC] [%{longpkg}] %{callpath} -> INFO No configured anchor peers of Org3MSP for channel businesschannel to learn about +peer0.org1.example.com | [0a1 03-12 01:58:05.25 UTC] [%{longpkg}] %{callpath} -> INFO Learning about the configured anchor peers of Org1MSP for channel businesschannel : [{peer0.org1.example.com 7051}] +peer0.org1.example.com | [0a2 03-12 01:58:05.25 UTC] [%{longpkg}] %{callpath} -> INFO Anchor peer with same endpoint, skipping connecting to myself +peer0.org1.example.com | [0a3 03-12 01:58:05.25 UTC] [%{longpkg}] %{callpath} -> INFO Learning about the configured anchor peers of Org2MSP for channel businesschannel : [{peer0.org2.example.com 7051}] +peer0.org1.example.com | [0a4 03-12 01:58:05.26 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-03-12T01:58:05.263Z", "grpc.service": "gossip.Gossip", "grpc.method": "Ping", "grpc.request_deadline": "2019-03-12T01:58:07.261Z", "grpc.peer_address": "172.28.0.4:45048", "grpc.peer_subject": "CN=peer1.org2.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "170.1µs"} +peer0.org1.example.com | [0a5 03-12 01:58:05.28 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-03-12T01:58:05.281Z", "grpc.service": "gossip.Gossip", "grpc.method": "Ping", "grpc.request_deadline": "2019-03-12T01:58:07.278Z", "grpc.peer_address": "172.28.0.5:45320", "grpc.peer_subject": "CN=peer1.org1.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "502.9µs"} +peer0.org1.example.com | [0a6 03-12 01:58:05.28 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-03-12T01:58:05.267Z", "grpc.service": "gossip.Gossip", "grpc.method": "GossipStream", "grpc.request_deadline": "2019-03-12T01:58:15.266Z", "grpc.peer_address": "172.28.0.4:45048", "grpc.peer_subject": "CN=peer1.org2.example.com,L=San Francisco,ST=California,C=US", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "17.0303ms"} +peer0.org1.example.com | [0a7 03-12 01:58:05.28 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-03-12T01:56:29.981Z", "grpc.service": "gossip.Gossip", "grpc.method": "GossipStream", "grpc.peer_address": "172.28.0.4:44842", "grpc.peer_subject": "CN=peer1.org2.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "1m35.40652s"} +peer0.org1.example.com | [0a8 03-12 01:58:05.30 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Validated block [6] in 151ms +peer0.org1.example.com | [0a9 03-12 01:58:05.30 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-03-12T01:58:05.258Z", "grpc.service": "gossip.Gossip", "grpc.method": "GossipStream", "grpc.request_deadline": "2019-03-12T01:58:15.257Z", "grpc.peer_address": "172.28.0.6:43998", "grpc.peer_subject": "CN=peer0.org2.example.com,L=San Francisco,ST=California,C=US", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "49.408ms"} +peer0.org1.example.com | [0aa 03-12 01:58:05.32 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-03-12T01:58:05.322Z", "grpc.service": "gossip.Gossip", "grpc.method": "Ping", "grpc.request_deadline": "2019-03-12T01:58:07.322Z", "grpc.peer_address": "172.28.0.6:44010", "grpc.peer_subject": "CN=peer0.org2.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "302.9µs"} +peer0.org1.example.com | [0ab 03-12 01:58:05.33 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-03-12T01:56:28.115Z", "grpc.service": "gossip.Gossip", "grpc.method": "GossipStream", "grpc.peer_address": "172.28.0.5:45074", "grpc.peer_subject": "CN=peer1.org1.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "1m37.3211954s"} +peer0.org1.example.com | [0ac 03-12 01:58:05.33 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-03-12T01:58:05.289Z", "grpc.service": "gossip.Gossip", "grpc.method": "GossipStream", "grpc.request_deadline": "2019-03-12T01:58:15.288Z", "grpc.peer_address": "172.28.0.5:45320", "grpc.peer_subject": "CN=peer1.org1.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "45.9467ms"} +peer0.org1.example.com | [0ad 03-12 01:58:05.34 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Committed block [6] with 1 transaction(s) in 46ms (state_validation=21ms block_commit=16ms state_commit=3ms) +peer0.org1.example.com | [0ae 03-12 01:58:05.37 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-03-12T01:58:05.36Z", "grpc.service": "gossip.Gossip", "grpc.method": "GossipStream", "grpc.peer_address": "172.28.0.6:44010", "grpc.peer_subject": "CN=peer0.org2.example.com,L=San Francisco,ST=California,C=US", "error": "EOF", "grpc.code": "Unknown", "grpc.call_duration": "16.0472ms"} +peer0.org1.example.com | [0af 03-12 01:58:15.08 UTC] [%{longpkg}] %{callpath} -> INFO [][b2f22246] Entry chaincode: name:"cscc" +peer0.org1.example.com | [0b0 03-12 01:58:15.08 UTC] [%{longpkg}] %{callpath} -> INFO [][b2f22246] Exit chaincode: name:"cscc" (1ms) +peer0.org1.example.com | [0b1 03-12 01:58:15.08 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-03-12T01:58:15.082Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.28.0.3:37676", "grpc.code": "OK", "grpc.call_duration": "2.6162ms"} +peer0.org1.example.com | [0b2 03-12 01:58:15.88 UTC] [%{longpkg}] %{callpath} -> INFO [][16d4ac83] Entry chaincode: name:"qscc" +peer0.org1.example.com | [0b3 03-12 01:58:15.88 UTC] [%{longpkg}] %{callpath} -> INFO [][16d4ac83] Exit chaincode: name:"qscc" (2ms) +peer0.org1.example.com | [0b4 03-12 01:58:15.88 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-03-12T01:58:15.883Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.28.0.3:37684", "grpc.code": "OK", "grpc.call_duration": "3.3635ms"} +peer1.org1.example.com | [001 03-12 01:56:12.89 UTC] [%{longpkg}] %{callpath} -> INFO Starting peer: +peer1.org1.example.com | Version: 1.4.0 peer1.org1.example.com | Commit SHA: development build -peer1.org1.example.com | Go version: go1.11.2 +peer1.org1.example.com | Go version: go1.11.4 peer1.org1.example.com | OS/Arch: linux/amd64 peer1.org1.example.com | Chaincode: peer1.org1.example.com | Base Image Version: 0.4.14 peer1.org1.example.com | Base Docker Namespace: hyperledger peer1.org1.example.com | Base Docker Label: org.hyperledger.fabric peer1.org1.example.com | Docker Namespace: hyperledger -peer1.org1.example.com | [002 01-09 08:56:42.82 UTC] [%{longpkg}] %{callpath} -> INFO Initializing ledger mgmt -peer1.org1.example.com | [003 01-09 08:56:42.82 UTC] [%{longpkg}] %{callpath} -> INFO Initializing ledger provider -peer1.org1.example.com | [004 01-09 08:56:43.04 UTC] [%{longpkg}] %{callpath} -> INFO ledger provider Initialized -peer1.org1.example.com | [005 01-09 08:56:43.17 UTC] [%{longpkg}] %{callpath} -> INFO ledger mgmt initialized -peer1.org1.example.com | [006 01-09 08:56:43.17 UTC] [%{longpkg}] %{callpath} -> INFO Auto-detected peer address: 172.24.0.4:7051 -orderer0.example.com | General.GenesisProfile = "SampleInsecureSolo" -orderer0.example.com | General.SystemChannel = "test-system-channel-name" -orderer0.example.com | General.GenesisFile = "/var/hyperledger/orderer/orderer.genesis.block" -orderer0.example.com | General.Profile.Enabled = false -orderer0.example.com | General.Profile.Address = "0.0.0.0:6060" -orderer0.example.com | General.LocalMSPDir = "/var/hyperledger/orderer/msp" -orderer0.example.com | General.LocalMSPID = "OrdererMSP" -orderer0.example.com | General.BCCSP.ProviderName = "SW" -orderer0.example.com | General.BCCSP.SwOpts.SecLevel = 256 -orderer0.example.com | General.BCCSP.SwOpts.HashFamily = "SHA2" -orderer0.example.com | General.BCCSP.SwOpts.Ephemeral = false -orderer0.example.com | General.BCCSP.SwOpts.FileKeystore.KeyStorePath = "/var/hyperledger/orderer/msp/keystore" -orderer0.example.com | General.BCCSP.SwOpts.DummyKeystore = -orderer0.example.com | General.BCCSP.SwOpts.InmemKeystore = -orderer0.example.com | General.BCCSP.PluginOpts = -orderer0.example.com | General.Authentication.TimeWindow = 15m0s -orderer0.example.com | FileLedger.Location = "/var/hyperledger/production/orderer" -orderer0.example.com | FileLedger.Prefix = "hyperledger-fabric-ordererledger" -orderer0.example.com | RAMLedger.HistorySize = 1000 -orderer0.example.com | Kafka.Retry.ShortInterval = 5s -orderer0.example.com | Kafka.Retry.ShortTotal = 10m0s -orderer0.example.com | Kafka.Retry.LongInterval = 5m0s -orderer0.example.com | Kafka.Retry.LongTotal = 12h0m0s -orderer0.example.com | Kafka.Retry.NetworkTimeouts.DialTimeout = 10s -orderer0.example.com | Kafka.Retry.NetworkTimeouts.ReadTimeout = 10s -orderer0.example.com | Kafka.Retry.NetworkTimeouts.WriteTimeout = 10s -orderer0.example.com | Kafka.Retry.Metadata.RetryMax = 3 -orderer0.example.com | Kafka.Retry.Metadata.RetryBackoff = 250ms -orderer0.example.com | Kafka.Retry.Producer.RetryMax = 3 -orderer0.example.com | Kafka.Retry.Producer.RetryBackoff = 100ms -orderer0.example.com | Kafka.Retry.Consumer.RetryBackoff = 2s -orderer0.example.com | Kafka.Verbose = false -orderer0.example.com | Kafka.Version = 0.10.2.0 -orderer0.example.com | Kafka.TLS.Enabled = false -orderer0.example.com | Kafka.TLS.PrivateKey = "" -orderer0.example.com | Kafka.TLS.Certificate = "" -orderer0.example.com | Kafka.TLS.RootCAs = [] -orderer0.example.com | Kafka.TLS.ClientAuthRequired = false -orderer0.example.com | Kafka.TLS.ClientRootCAs = [] -orderer0.example.com | Kafka.SASLPlain.Enabled = false -orderer0.example.com | Kafka.SASLPlain.User = "" -orderer0.example.com | Kafka.SASLPlain.Password = "" -orderer0.example.com | Kafka.Topic.ReplicationFactor = 3 -orderer0.example.com | Debug.BroadcastTraceDir = "" -orderer0.example.com | Debug.DeliverTraceDir = "" -orderer0.example.com | Consensus = map[WALDir:/var/hyperledger/production/orderer/etcdraft/wal SnapDir:/var/hyperledger/production/orderer/etcdraft/snapshot] -orderer0.example.com | Operations.ListenAddress = "0.0.0.0:8443" -orderer0.example.com | Operations.TLS.Enabled = false -orderer0.example.com | Operations.TLS.PrivateKey = "" -orderer0.example.com | Operations.TLS.Certificate = "" -orderer0.example.com | Operations.TLS.RootCAs = [] -orderer0.example.com | Operations.TLS.ClientAuthRequired = false -orderer0.example.com | Operations.TLS.ClientRootCAs = [] -orderer0.example.com | Metrics.Provider = "prometheus" -orderer0.example.com | Metrics.Statsd.Network = "udp" -orderer0.example.com | Metrics.Statsd.Address = "127.0.0.1:8125" -orderer0.example.com | Metrics.Statsd.WriteInterval = 30s -orderer0.example.com | Metrics.Statsd.Prefix = "" -orderer0.example.com | [003 01-09 08:56:39.62 UTC] [%{longpkg}] %{callpath} -> INFO Starting orderer with TLS enabled -orderer0.example.com | [004 01-09 08:56:39.62 UTC] [%{longpkg}] %{callpath} -> INFO Getting block information from block storage -orderer0.example.com | [005 01-09 08:56:39.64 UTC] [%{longpkg}] %{callpath} -> INFO Starting system channel 'testchainid' with genesis block hash cde6efa82d0288cf91294accd919b39e2e13c658393e2d2d62d545b9d2dd5999 and orderer type solo -orderer0.example.com | [006 01-09 08:56:39.64 UTC] [%{longpkg}] %{callpath} -> INFO Starting orderer: -orderer0.example.com | Version: 1.4.0-rc1 -orderer0.example.com | Commit SHA: development build -orderer0.example.com | Go version: go1.11.2 -orderer0.example.com | OS/Arch: linux/amd64 -orderer0.example.com | [007 01-09 08:56:39.64 UTC] [%{longpkg}] %{callpath} -> INFO Beginning to serve requests -orderer0.example.com | [008 01-09 08:56:51.56 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T08:56:51.529Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Broadcast", "grpc.peer_address": "172.24.0.8:33084", "grpc.code": "OK", "grpc.call_duration": "33.6809ms"} -orderer0.example.com | [009 01-09 08:56:51.56 UTC] [%{longpkg}] %{callpath} -> INFO Getting block information from block storage -orderer0.example.com | [00a 01-09 08:56:51.57 UTC] [%{longpkg}] %{callpath} -> INFO Created and starting new chain businesschannel -orderer0.example.com | [00b 01-09 08:56:51.59 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.24.0.8:33082: rpc error: code = Canceled desc = context canceled -orderer0.example.com | [00c 01-09 08:56:51.59 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T08:56:51.516Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.24.0.8:33082", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "82.4385ms"} -prometheus | level=info ts=2019-01-09T08:56:44.6921025Z caller=main.go:631 msg="Loading configuration file" filename=prometheus.yml -prometheus | level=info ts=2019-01-09T08:56:44.7041241Z caller=main.go:657 msg="Completed loading of configuration file" filename=prometheus.yml -prometheus | level=info ts=2019-01-09T08:56:44.7042424Z caller=main.go:530 msg="Server is ready to receive web requests." -orderer0.example.com | [00d 01-09 08:56:55.56 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.24.0.8:33112: rpc error: code = Canceled desc = context canceled -orderer0.example.com | [00e 01-09 08:56:55.56 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T08:56:55.508Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.24.0.8:33112", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "57.5842ms"} -orderer0.example.com | [00f 01-09 08:56:55.56 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.24.0.8:33114: rpc error: code = Canceled desc = context canceled -orderer0.example.com | [010 01-09 08:56:55.56 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T08:56:55.524Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Broadcast", "grpc.peer_address": "172.24.0.8:33114", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "41.9631ms"} -orderer0.example.com | [011 01-09 08:56:57.83 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.24.0.8:33118: rpc error: code = Canceled desc = context canceled -orderer0.example.com | [012 01-09 08:56:57.83 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T08:56:57.771Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.24.0.8:33118", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "63.7111ms"} -orderer0.example.com | [013 01-09 08:56:57.83 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.24.0.8:33120: rpc error: code = Canceled desc = context canceled -orderer0.example.com | [014 01-09 08:56:57.83 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T08:56:57.792Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Broadcast", "grpc.peer_address": "172.24.0.8:33120", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "43.507ms"} -orderer0.example.com | [015 01-09 08:57:42.43 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.24.0.8:33184: rpc error: code = Canceled desc = context canceled -orderer0.example.com | [016 01-09 08:57:42.43 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T08:57:06.16Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Broadcast", "grpc.peer_address": "172.24.0.8:33184", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "36.3107475s"} -orderer0.example.com | [017 01-09 08:58:19.56 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.24.0.8:33252: rpc error: code = Canceled desc = context canceled -orderer0.example.com | [018 01-09 08:58:19.56 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T08:58:19.532Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Broadcast", "grpc.peer_address": "172.24.0.8:33252", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "28.1573ms"} -orderer0.example.com | [019 01-09 08:58:22.15 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.24.0.8:33266: rpc error: code = Canceled desc = context canceled -peer1.org1.example.com | [007 01-09 08:56:43.17 UTC] [%{longpkg}] %{callpath} -> INFO Returning peer1.org1.example.com:7051 -peer0.org2.example.com | Commit SHA: development build -peer0.org2.example.com | Go version: go1.11.2 -peer0.org2.example.com | OS/Arch: linux/amd64 -peer0.org2.example.com | Chaincode: -peer0.org2.example.com | Base Image Version: 0.4.14 -peer0.org2.example.com | Base Docker Namespace: hyperledger -peer0.org2.example.com | Base Docker Label: org.hyperledger.fabric -peer0.org2.example.com | Docker Namespace: hyperledger -peer0.org2.example.com | [002 01-09 08:56:42.80 UTC] [%{longpkg}] %{callpath} -> INFO Initializing ledger mgmt -peer0.org2.example.com | [003 01-09 08:56:42.80 UTC] [%{longpkg}] %{callpath} -> INFO Initializing ledger provider -peer0.org2.example.com | [004 01-09 08:56:43.06 UTC] [%{longpkg}] %{callpath} -> INFO ledger provider Initialized -peer0.org2.example.com | [005 01-09 08:56:43.19 UTC] [%{longpkg}] %{callpath} -> INFO ledger mgmt initialized -peer0.org2.example.com | [006 01-09 08:56:43.19 UTC] [%{longpkg}] %{callpath} -> INFO Auto-detected peer address: 172.24.0.3:7051 -peer0.org2.example.com | [007 01-09 08:56:43.19 UTC] [%{longpkg}] %{callpath} -> INFO Returning peer0.org2.example.com:7051 -peer0.org2.example.com | [008 01-09 08:56:43.19 UTC] [%{longpkg}] %{callpath} -> INFO Auto-detected peer address: 172.24.0.3:7051 -peer0.org2.example.com | [009 01-09 08:56:43.19 UTC] [%{longpkg}] %{callpath} -> INFO Returning peer0.org2.example.com:7051 -peer0.org2.example.com | [00a 01-09 08:56:43.23 UTC] [%{longpkg}] %{callpath} -> INFO Starting peer with TLS enabled -peer0.org2.example.com | [00b 01-09 08:56:43.30 UTC] [%{longpkg}] %{callpath} -> INFO Entering computeChaincodeEndpoint with peerHostname: peer0.org2.example.com -peer0.org2.example.com | [00c 01-09 08:56:43.30 UTC] [%{longpkg}] %{callpath} -> INFO Exit with ccEndpoint: peer0.org2.example.com:7052 -orderer0.example.com | [01a 01-09 08:58:22.15 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T08:58:22.137Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Broadcast", "grpc.peer_address": "172.24.0.8:33266", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "17.551ms"} -orderer0.example.com | [01b 01-09 08:58:29.37 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.24.0.8:33320: rpc error: code = Canceled desc = context canceled -orderer0.example.com | [01c 01-09 08:58:29.37 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T08:58:29.37Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.24.0.8:33320", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "7.2877ms"} -orderer0.example.com | [01d 01-09 08:58:29.65 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.24.0.8:33322: rpc error: code = Canceled desc = context canceled -orderer0.example.com | [01e 01-09 08:58:29.65 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T08:58:29.64Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.24.0.8:33322", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "14.6636ms"} -orderer0.example.com | [01f 01-09 08:58:29.82 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.24.0.8:33324: rpc error: code = Canceled desc = context canceled -orderer0.example.com | [020 01-09 08:58:29.82 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T08:58:29.819Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.24.0.8:33324", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "9.9722ms"} -orderer0.example.com | [021 01-09 08:58:30.03 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.24.0.8:33326: rpc error: code = Canceled desc = context canceled -orderer0.example.com | [022 01-09 08:58:30.03 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T08:58:30.025Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.24.0.8:33326", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "8.6022ms"} -orderer0.example.com | [023 01-09 08:58:30.23 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.24.0.8:33328: rpc error: code = Canceled desc = context canceled -orderer0.example.com | [024 01-09 08:58:30.23 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T08:58:30.223Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.24.0.8:33328", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "13.5946ms"} -orderer0.example.com | [025 01-09 08:58:30.44 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.24.0.8:33330: rpc error: code = Canceled desc = context canceled -orderer0.example.com | [026 01-09 08:58:30.44 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T08:58:30.431Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.24.0.8:33330", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "8.6551ms"} -orderer0.example.com | [027 01-09 08:58:30.62 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.24.0.8:33332: rpc error: code = Canceled desc = context canceled -orderer0.example.com | [028 01-09 08:58:30.62 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T08:58:30.613Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.24.0.8:33332", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "7.9043ms"} -orderer0.example.com | [029 01-09 08:58:30.83 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.24.0.8:33334: rpc error: code = Canceled desc = context canceled -orderer0.example.com | [02a 01-09 08:58:30.83 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T08:58:30.829Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.24.0.8:33334", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "9.7979ms"} -orderer0.example.com | [02b 01-09 08:58:31.01 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.24.0.8:33336: rpc error: code = Canceled desc = context canceled -orderer0.example.com | [02c 01-09 08:58:31.01 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T08:58:31.007Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.24.0.8:33336", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "7.1246ms"} -orderer0.example.com | [02d 01-09 08:58:31.24 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.24.0.8:33338: rpc error: code = Canceled desc = context canceled -orderer0.example.com | [02e 01-09 08:58:31.24 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T08:58:31.225Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.24.0.8:33338", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "23.7998ms"} -orderer0.example.com | [02f 01-09 08:58:31.42 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.24.0.8:33340: rpc error: code = Canceled desc = context canceled -orderer0.example.com | [030 01-09 08:58:31.42 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T08:58:31.409Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.24.0.8:33340", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "14.116ms"} -orderer0.example.com | [031 01-09 08:58:31.67 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.24.0.8:33342: rpc error: code = Canceled desc = context canceled -orderer0.example.com | [032 01-09 08:58:31.67 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T08:58:31.652Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.24.0.8:33342", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "20.0764ms"} -orderer0.example.com | [033 01-09 08:58:38.27 UTC] [%{longpkg}] %{callpath} -> WARN De-duplicating identity [Org1MSP0270edfed53a78d7d3c66dc25737f57f956e48ef69dca5ecc91c26679dd4eff3] at index 2 in signature set -orderer0.example.com | [034 01-09 08:58:38.27 UTC] [%{longpkg}] %{callpath} -> WARN De-duplicating identity [Org1MSP0270edfed53a78d7d3c66dc25737f57f956e48ef69dca5ecc91c26679dd4eff3] at index 2 in signature set -orderer0.example.com | [035 01-09 08:58:38.29 UTC] [%{longpkg}] %{callpath} -> WARN De-duplicating identity [Org1MSP0270edfed53a78d7d3c66dc25737f57f956e48ef69dca5ecc91c26679dd4eff3] at index 2 in signature set -orderer0.example.com | [036 01-09 08:58:38.29 UTC] [%{longpkg}] %{callpath} -> WARN De-duplicating identity [Org1MSP0270edfed53a78d7d3c66dc25737f57f956e48ef69dca5ecc91c26679dd4eff3] at index 2 in signature set -orderer0.example.com | [037 01-09 08:58:38.29 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.24.0.8:33352: rpc error: code = Canceled desc = context canceled -peer1.org1.example.com | [008 01-09 08:56:43.17 UTC] [%{longpkg}] %{callpath} -> INFO Auto-detected peer address: 172.24.0.4:7051 -peer1.org1.example.com | [009 01-09 08:56:43.17 UTC] [%{longpkg}] %{callpath} -> INFO Returning peer1.org1.example.com:7051 -peer1.org1.example.com | [00a 01-09 08:56:43.25 UTC] [%{longpkg}] %{callpath} -> INFO Starting peer with TLS enabled -peer1.org1.example.com | [00b 01-09 08:56:43.31 UTC] [%{longpkg}] %{callpath} -> INFO Entering computeChaincodeEndpoint with peerHostname: peer1.org1.example.com -peer1.org1.example.com | [00c 01-09 08:56:43.31 UTC] [%{longpkg}] %{callpath} -> INFO Exit with ccEndpoint: peer1.org1.example.com:7052 -peer1.org1.example.com | [00d 01-09 08:56:43.34 UTC] [%{longpkg}] %{callpath} -> INFO system chaincode lscc(github.com/hyperledger/fabric/core/scc/lscc) registered -peer1.org1.example.com | [00e 01-09 08:56:43.34 UTC] [%{longpkg}] %{callpath} -> INFO system chaincode cscc(github.com/hyperledger/fabric/core/scc/cscc) registered -peer1.org1.example.com | [00f 01-09 08:56:43.34 UTC] [%{longpkg}] %{callpath} -> INFO system chaincode qscc(github.com/hyperledger/fabric/core/scc/qscc) registered -peer1.org1.example.com | [010 01-09 08:56:43.34 UTC] [%{longpkg}] %{callpath} -> INFO system chaincode +lifecycle(github.com/hyperledger/fabric/core/chaincode/lifecycle) registered -orderer0.example.com | [038 01-09 08:58:38.30 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T08:58:38.269Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Broadcast", "grpc.peer_address": "172.24.0.8:33352", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "30.4208ms"} -orderer0.example.com | [039 01-09 08:58:38.30 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.24.0.8:33350: rpc error: code = Canceled desc = context canceled -orderer0.example.com | [03a 01-09 08:58:38.30 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T08:58:38.25Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.24.0.8:33350", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "50.303ms"} -orderer0.example.com | [03b 01-09 08:58:40.54 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.24.0.8:33376: rpc error: code = Canceled desc = context canceled -orderer0.example.com | [03c 01-09 08:58:40.54 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T08:58:40.535Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.24.0.8:33376", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "9.9595ms"} -peer1.org2.example.com | [001 01-09 08:56:43.04 UTC] [%{longpkg}] %{callpath} -> INFO Starting peer: -peer1.org2.example.com | Version: 1.4.0-rc1 -peer1.org2.example.com | Commit SHA: development build -peer1.org2.example.com | Go version: go1.11.2 -peer1.org2.example.com | OS/Arch: linux/amd64 -peer1.org2.example.com | Chaincode: -peer1.org2.example.com | Base Image Version: 0.4.14 -peer1.org2.example.com | Base Docker Namespace: hyperledger -peer1.org2.example.com | Base Docker Label: org.hyperledger.fabric -peer1.org2.example.com | Docker Namespace: hyperledger -peer1.org2.example.com | [002 01-09 08:56:43.04 UTC] [%{longpkg}] %{callpath} -> INFO Initializing ledger mgmt -peer1.org2.example.com | [003 01-09 08:56:43.04 UTC] [%{longpkg}] %{callpath} -> INFO Initializing ledger provider -peer1.org2.example.com | [004 01-09 08:56:43.35 UTC] [%{longpkg}] %{callpath} -> INFO ledger provider Initialized -peer1.org2.example.com | [005 01-09 08:56:43.52 UTC] [%{longpkg}] %{callpath} -> INFO ledger mgmt initialized -peer1.org2.example.com | [006 01-09 08:56:43.52 UTC] [%{longpkg}] %{callpath} -> INFO Auto-detected peer address: 172.24.0.5:7051 -peer1.org2.example.com | [007 01-09 08:56:43.52 UTC] [%{longpkg}] %{callpath} -> INFO Returning peer1.org2.example.com:7051 -peer1.org2.example.com | [008 01-09 08:56:43.52 UTC] [%{longpkg}] %{callpath} -> INFO Auto-detected peer address: 172.24.0.5:7051 -peer1.org2.example.com | [009 01-09 08:56:43.52 UTC] [%{longpkg}] %{callpath} -> INFO Returning peer1.org2.example.com:7051 -peer1.org2.example.com | [00a 01-09 08:56:43.55 UTC] [%{longpkg}] %{callpath} -> INFO Starting peer with TLS enabled -peer1.org2.example.com | [00b 01-09 08:56:43.56 UTC] [%{longpkg}] %{callpath} -> INFO Entering computeChaincodeEndpoint with peerHostname: peer1.org2.example.com -peer1.org2.example.com | [00c 01-09 08:56:43.56 UTC] [%{longpkg}] %{callpath} -> INFO Exit with ccEndpoint: peer1.org2.example.com:7052 -peer1.org2.example.com | [00d 01-09 08:56:43.59 UTC] [%{longpkg}] %{callpath} -> INFO system chaincode lscc(github.com/hyperledger/fabric/core/scc/lscc) registered -peer1.org2.example.com | [00e 01-09 08:56:43.59 UTC] [%{longpkg}] %{callpath} -> INFO system chaincode cscc(github.com/hyperledger/fabric/core/scc/cscc) registered -peer1.org2.example.com | [00f 01-09 08:56:43.59 UTC] [%{longpkg}] %{callpath} -> INFO system chaincode qscc(github.com/hyperledger/fabric/core/scc/qscc) registered -peer1.org2.example.com | [010 01-09 08:56:43.59 UTC] [%{longpkg}] %{callpath} -> INFO system chaincode +lifecycle(github.com/hyperledger/fabric/core/chaincode/lifecycle) registered -peer1.org2.example.com | [011 01-09 08:56:43.61 UTC] [%{longpkg}] %{callpath} -> INFO Initialize gossip with endpoint peer1.org2.example.com:7051 and bootstrap set [peer0.org2.example.com:7051] -peer1.org2.example.com | [012 01-09 08:56:43.61 UTC] [%{longpkg}] %{callpath} -> INFO Creating gossip service with self membership of Endpoint: peer1.org2.example.com:7051, InternalEndpoint: peer1.org2.example.com:7051, PKI-ID: 54071d960ff51087a5562fde4801dfa904c634c6c3c38da0d982a0b1f62f0a27, Metadata: -peer1.org2.example.com | [013 01-09 08:56:43.61 UTC] [%{longpkg}] %{callpath} -> INFO Gossip instance peer1.org2.example.com:7051 started -peer1.org2.example.com | [014 01-09 08:56:43.62 UTC] [%{longpkg}] %{callpath} -> INFO system chaincode lscc/(github.com/hyperledger/fabric/core/scc/lscc) deployed -peer1.org2.example.com | [015 01-09 08:56:43.65 UTC] [%{longpkg}] %{callpath} -> INFO Init CSCC -peer1.org2.example.com | [016 01-09 08:56:43.65 UTC] [%{longpkg}] %{callpath} -> INFO system chaincode cscc/(github.com/hyperledger/fabric/core/scc/cscc) deployed -peer1.org2.example.com | [017 01-09 08:56:43.66 UTC] [%{longpkg}] %{callpath} -> INFO Init QSCC -peer1.org2.example.com | [018 01-09 08:56:43.66 UTC] [%{longpkg}] %{callpath} -> INFO system chaincode qscc/(github.com/hyperledger/fabric/core/scc/qscc) deployed -peer1.org2.example.com | [019 01-09 08:56:43.66 UTC] [%{longpkg}] %{callpath} -> INFO system chaincode +lifecycle/(github.com/hyperledger/fabric/core/chaincode/lifecycle) deployed -peer1.org2.example.com | [01a 01-09 08:56:43.66 UTC] [%{longpkg}] %{callpath} -> INFO Deployed system chaincodes -peer1.org2.example.com | [01b 01-09 08:56:43.67 UTC] [%{longpkg}] %{callpath} -> INFO Created with config TLS: true, authCacheMaxSize: 1000, authCachePurgeRatio: 0.750000 -peer1.org2.example.com | [01c 01-09 08:56:43.67 UTC] [%{longpkg}] %{callpath} -> INFO Discovery service activated -peer1.org2.example.com | [01d 01-09 08:56:43.67 UTC] [%{longpkg}] %{callpath} -> INFO Starting peer with ID=[name:"peer1.org2.example.com" ], network ID=[dev], address=[peer1.org2.example.com:7051] -peer1.org2.example.com | [01e 01-09 08:56:43.67 UTC] [%{longpkg}] %{callpath} -> INFO Started peer with ID=[name:"peer1.org2.example.com" ], network ID=[dev], address=[peer1.org2.example.com:7051] -peer1.org2.example.com | [01f 01-09 08:56:52.86 UTC] [%{longpkg}] %{callpath} -> INFO [][999cb1c1] Entry chaincode: name:"cscc" -peer1.org2.example.com | [020 01-09 08:56:52.86 UTC] [%{longpkg}] %{callpath} -> INFO Creating ledger [businesschannel] with genesis block -peer1.org2.example.com | [021 01-09 08:56:52.86 UTC] [%{longpkg}] %{callpath} -> INFO Getting block information from block storage -peer1.org2.example.com | [022 01-09 08:56:52.89 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Committed block [0] with 1 transaction(s) in 23ms (state_validation=1ms block_commit=13ms state_commit=3ms) -peer1.org2.example.com | [023 01-09 08:56:52.90 UTC] [%{longpkg}] %{callpath} -> INFO Created ledger [businesschannel] with genesis block -peer1.org2.example.com | [024 01-09 08:56:52.91 UTC] [%{longpkg}] %{callpath} -> INFO Joining gossip network of channel businesschannel with 2 organizations -peer1.org2.example.com | [025 01-09 08:56:52.91 UTC] [%{longpkg}] %{callpath} -> INFO No configured anchor peers of Org1MSP for channel businesschannel to learn about -peer1.org2.example.com | [026 01-09 08:56:52.91 UTC] [%{longpkg}] %{callpath} -> INFO No configured anchor peers of Org2MSP for channel businesschannel to learn about -peer1.org2.example.com | [027 01-09 08:56:52.94 UTC] [%{longpkg}] %{callpath} -> INFO Updating metadata information, current ledger sequence is at = 0, next expected block is = 1 -peer1.org2.example.com | [028 01-09 08:56:52.94 UTC] [%{longpkg}] %{callpath} -> INFO system chaincode lscc/businesschannel(github.com/hyperledger/fabric/core/scc/lscc) deployed -peer1.org2.example.com | [029 01-09 08:56:52.94 UTC] [%{longpkg}] %{callpath} -> INFO Init CSCC -peer0.org2.example.com | [00d 01-09 08:56:43.34 UTC] [%{longpkg}] %{callpath} -> INFO system chaincode lscc(github.com/hyperledger/fabric/core/scc/lscc) registered -peer0.org2.example.com | [00e 01-09 08:56:43.34 UTC] [%{longpkg}] %{callpath} -> INFO system chaincode cscc(github.com/hyperledger/fabric/core/scc/cscc) registered -peer0.org2.example.com | [00f 01-09 08:56:43.34 UTC] [%{longpkg}] %{callpath} -> INFO system chaincode qscc(github.com/hyperledger/fabric/core/scc/qscc) registered -peer0.org2.example.com | [010 01-09 08:56:43.34 UTC] [%{longpkg}] %{callpath} -> INFO system chaincode +lifecycle(github.com/hyperledger/fabric/core/chaincode/lifecycle) registered -peer0.org2.example.com | [011 01-09 08:56:43.42 UTC] [%{longpkg}] %{callpath} -> INFO Initialize gossip with endpoint peer0.org2.example.com:7051 and bootstrap set [peer0.org2.example.com:7051] -peer0.org2.example.com | [012 01-09 08:56:43.44 UTC] [%{longpkg}] %{callpath} -> INFO Creating gossip service with self membership of Endpoint: peer0.org2.example.com:7051, InternalEndpoint: peer0.org2.example.com:7051, PKI-ID: 75b2768046f1cff79a75d29027b3162b4c2d489ed2c22c48403d0760a7c0a76b, Metadata: -peer0.org2.example.com | [013 01-09 08:56:43.44 UTC] [%{longpkg}] %{callpath} -> INFO Gossip instance peer0.org2.example.com:7051 started -peer0.org2.example.com | [014 01-09 08:56:43.45 UTC] [%{longpkg}] %{callpath} -> INFO system chaincode lscc/(github.com/hyperledger/fabric/core/scc/lscc) deployed -peer0.org2.example.com | [015 01-09 08:56:43.46 UTC] [%{longpkg}] %{callpath} -> INFO Init CSCC -peer0.org2.example.com | [016 01-09 08:56:43.46 UTC] [%{longpkg}] %{callpath} -> INFO system chaincode cscc/(github.com/hyperledger/fabric/core/scc/cscc) deployed -peer0.org2.example.com | [017 01-09 08:56:43.47 UTC] [%{longpkg}] %{callpath} -> INFO Init QSCC -peer0.org2.example.com | [018 01-09 08:56:43.47 UTC] [%{longpkg}] %{callpath} -> INFO system chaincode qscc/(github.com/hyperledger/fabric/core/scc/qscc) deployed -peer0.org2.example.com | [019 01-09 08:56:43.48 UTC] [%{longpkg}] %{callpath} -> INFO system chaincode +lifecycle/(github.com/hyperledger/fabric/core/chaincode/lifecycle) deployed -peer0.org2.example.com | [01a 01-09 08:56:43.48 UTC] [%{longpkg}] %{callpath} -> INFO Deployed system chaincodes -peer0.org2.example.com | [01b 01-09 08:56:43.48 UTC] [%{longpkg}] %{callpath} -> INFO Created with config TLS: true, authCacheMaxSize: 1000, authCachePurgeRatio: 0.750000 -peer0.org2.example.com | [01c 01-09 08:56:43.49 UTC] [%{longpkg}] %{callpath} -> INFO Discovery service activated -peer0.org2.example.com | [01d 01-09 08:56:43.50 UTC] [%{longpkg}] %{callpath} -> INFO Starting peer with ID=[name:"peer0.org2.example.com" ], network ID=[dev], address=[peer0.org2.example.com:7051] -peer0.org2.example.com | [01e 01-09 08:56:43.50 UTC] [%{longpkg}] %{callpath} -> INFO Started peer with ID=[name:"peer0.org2.example.com" ], network ID=[dev], address=[peer0.org2.example.com:7051] -peer0.org2.example.com | [01f 01-09 08:56:43.64 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T08:56:43.643Z", "grpc.service": "gossip.Gossip", "grpc.method": "Ping", "grpc.request_deadline": "2019-01-09T08:56:45.641Z", "grpc.peer_address": "172.24.0.5:45148", "grpc.peer_subject": "CN=peer1.org2.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "210.9µs"} -peer0.org2.example.com | [020 01-09 08:56:43.66 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T08:56:43.646Z", "grpc.service": "gossip.Gossip", "grpc.method": "GossipStream", "grpc.request_deadline": "2019-01-09T08:56:53.646Z", "grpc.peer_address": "172.24.0.5:45148", "grpc.peer_subject": "CN=peer1.org2.example.com,L=San Francisco,ST=California,C=US", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "15.3254ms"} -peer0.org2.example.com | [021 01-09 08:56:43.67 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T08:56:43.675Z", "grpc.service": "gossip.Gossip", "grpc.method": "Ping", "grpc.request_deadline": "2019-01-09T08:56:45.674Z", "grpc.peer_address": "172.24.0.5:45150", "grpc.peer_subject": "CN=peer1.org2.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "214.2µs"} -peer0.org2.example.com | [022 01-09 08:56:52.59 UTC] [%{longpkg}] %{callpath} -> INFO [][a9011740] Entry chaincode: name:"cscc" -peer0.org2.example.com | [023 01-09 08:56:52.60 UTC] [%{longpkg}] %{callpath} -> INFO Creating ledger [businesschannel] with genesis block -peer0.org2.example.com | [024 01-09 08:56:52.60 UTC] [%{longpkg}] %{callpath} -> INFO Getting block information from block storage -peer0.org2.example.com | [025 01-09 08:56:52.64 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Committed block [0] with 1 transaction(s) in 26ms (state_validation=1ms block_commit=17ms state_commit=4ms) -peer0.org2.example.com | [026 01-09 08:56:52.64 UTC] [%{longpkg}] %{callpath} -> INFO Created ledger [businesschannel] with genesis block -peer0.org2.example.com | [027 01-09 08:56:52.65 UTC] [%{longpkg}] %{callpath} -> INFO Joining gossip network of channel businesschannel with 2 organizations -peer0.org2.example.com | [028 01-09 08:56:52.65 UTC] [%{longpkg}] %{callpath} -> INFO No configured anchor peers of Org2MSP for channel businesschannel to learn about -peer0.org2.example.com | [029 01-09 08:56:52.65 UTC] [%{longpkg}] %{callpath} -> INFO No configured anchor peers of Org1MSP for channel businesschannel to learn about -peer0.org2.example.com | [02a 01-09 08:56:52.69 UTC] [%{longpkg}] %{callpath} -> INFO Updating metadata information, current ledger sequence is at = 0, next expected block is = 1 -peer0.org2.example.com | [02b 01-09 08:56:52.69 UTC] [%{longpkg}] %{callpath} -> INFO system chaincode lscc/businesschannel(github.com/hyperledger/fabric/core/scc/lscc) deployed -peer0.org2.example.com | [02c 01-09 08:56:52.69 UTC] [%{longpkg}] %{callpath} -> INFO Init CSCC -peer0.org2.example.com | [02d 01-09 08:56:52.69 UTC] [%{longpkg}] %{callpath} -> INFO system chaincode cscc/businesschannel(github.com/hyperledger/fabric/core/scc/cscc) deployed -peer0.org2.example.com | [02e 01-09 08:56:52.69 UTC] [%{longpkg}] %{callpath} -> INFO Init QSCC -peer0.org2.example.com | [02f 01-09 08:56:52.69 UTC] [%{longpkg}] %{callpath} -> INFO system chaincode qscc/businesschannel(github.com/hyperledger/fabric/core/scc/qscc) deployed -peer0.org2.example.com | [030 01-09 08:56:52.70 UTC] [%{longpkg}] %{callpath} -> INFO system chaincode +lifecycle/businesschannel(github.com/hyperledger/fabric/core/chaincode/lifecycle) deployed -peer0.org2.example.com | [031 01-09 08:56:52.70 UTC] [%{longpkg}] %{callpath} -> INFO [][a9011740] Exit chaincode: name:"cscc" (101ms) -peer0.org2.example.com | [032 01-09 08:56:52.70 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T08:56:52.597Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.24.0.8:57362", "grpc.code": "OK", "grpc.call_duration": "104.4059ms"} -peer0.org2.example.com | [033 01-09 08:56:53.72 UTC] [%{longpkg}] %{callpath} -> INFO [][b7dc205d] Entry chaincode: name:"cscc" -peer0.org2.example.com | [034 01-09 08:56:53.72 UTC] [%{longpkg}] %{callpath} -> INFO [][b7dc205d] Exit chaincode: name:"cscc" (2ms) -peer0.org2.example.com | [035 01-09 08:56:53.73 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T08:56:53.727Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.24.0.8:57370", "grpc.code": "OK", "grpc.call_duration": "2.9522ms"} -peer0.org2.example.com | [036 01-09 08:56:54.75 UTC] [%{longpkg}] %{callpath} -> INFO [][68d322ba] Entry chaincode: name:"qscc" -peer0.org2.example.com | [037 01-09 08:56:54.75 UTC] [%{longpkg}] %{callpath} -> INFO [][68d322ba] Exit chaincode: name:"qscc" (1ms) -peer0.org2.example.com | [038 01-09 08:56:54.75 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T08:56:54.752Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.24.0.8:57378", "grpc.code": "OK", "grpc.call_duration": "2.4647ms"} -peer1.org1.example.com | [011 01-09 08:56:43.41 UTC] [%{longpkg}] %{callpath} -> INFO Initialize gossip with endpoint peer1.org1.example.com:7051 and bootstrap set [peer0.org1.example.com:7051] -peer1.org1.example.com | [012 01-09 08:56:43.43 UTC] [%{longpkg}] %{callpath} -> INFO Creating gossip service with self membership of Endpoint: peer1.org1.example.com:7051, InternalEndpoint: peer1.org1.example.com:7051, PKI-ID: 0be1e243940145f5e3af2c865fe319e551a303f3013dd34afa09d7f05c0653ca, Metadata: -peer1.org1.example.com | [013 01-09 08:56:43.43 UTC] [%{longpkg}] %{callpath} -> INFO Gossip instance peer1.org1.example.com:7051 started -peer0.org2.example.com | [039 01-09 08:56:57.65 UTC] [%{longpkg}] %{callpath} -> INFO Membership view has changed. peers went online: [[peer1.org2.example.com:7051]] , current view: [[peer1.org2.example.com:7051]] -peer0.org2.example.com | [03a 01-09 08:56:58.38 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T08:56:58.386Z", "grpc.service": "gossip.Gossip", "grpc.method": "Ping", "grpc.request_deadline": "2019-01-09T08:57:00.384Z", "grpc.peer_address": "172.24.0.6:39400", "grpc.peer_subject": "CN=peer0.org1.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "341.6µs"} -peer0.org2.example.com | [03b 01-09 08:56:58.42 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T08:56:58.397Z", "grpc.service": "gossip.Gossip", "grpc.method": "GossipStream", "grpc.request_deadline": "2019-01-09T08:57:08.396Z", "grpc.peer_address": "172.24.0.6:39400", "grpc.peer_subject": "CN=peer0.org1.example.com,L=San Francisco,ST=California,C=US", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "29.8789ms"} -peer0.org2.example.com | [03c 01-09 08:56:58.47 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T08:56:58.473Z", "grpc.service": "gossip.Gossip", "grpc.method": "Ping", "grpc.request_deadline": "2019-01-09T08:57:00.472Z", "grpc.peer_address": "172.24.0.6:39402", "grpc.peer_subject": "CN=peer0.org1.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "331µs"} -peer0.org2.example.com | [03d 01-09 08:56:58.51 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T08:56:58.518Z", "grpc.service": "gossip.Gossip", "grpc.method": "Ping", "grpc.request_deadline": "2019-01-09T08:57:00.518Z", "grpc.peer_address": "172.24.0.4:53848", "grpc.peer_subject": "CN=peer1.org1.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "349µs"} -peer0.org2.example.com | [03e 01-09 08:56:58.55 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T08:56:58.533Z", "grpc.service": "gossip.Gossip", "grpc.method": "GossipStream", "grpc.request_deadline": "2019-01-09T08:57:08.532Z", "grpc.peer_address": "172.24.0.4:53848", "grpc.peer_subject": "CN=peer1.org1.example.com,L=San Francisco,ST=California,C=US", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "20.2521ms"} -peer0.org2.example.com | [03f 01-09 08:56:58.55 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T08:56:58.557Z", "grpc.service": "gossip.Gossip", "grpc.method": "Ping", "grpc.request_deadline": "2019-01-09T08:57:00.556Z", "grpc.peer_address": "172.24.0.4:53852", "grpc.peer_subject": "CN=peer1.org1.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "127.3µs"} -peer0.org2.example.com | [040 01-09 08:56:58.69 UTC] [%{longpkg}] %{callpath} -> INFO 75b2768046f1cff79a75d29027b3162b4c2d489ed2c22c48403d0760a7c0a76b : Becoming a leader -peer0.org2.example.com | [041 01-09 08:56:58.69 UTC] [%{longpkg}] %{callpath} -> INFO Elected as a leader, starting delivery service for channel businesschannel -peer0.org2.example.com | [042 01-09 08:56:58.71 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Received block [1] from buffer -peer0.org2.example.com | [043 01-09 08:56:58.73 UTC] [%{longpkg}] %{callpath} -> INFO Joining gossip network of channel businesschannel with 2 organizations -peer0.org2.example.com | [044 01-09 08:56:58.73 UTC] [%{longpkg}] %{callpath} -> INFO Learning about the configured anchor peers of Org1MSP for channel businesschannel : [{peer0.org1.example.com 7051}] -peer0.org2.example.com | [045 01-09 08:56:58.73 UTC] [%{longpkg}] %{callpath} -> INFO No configured anchor peers of Org2MSP for channel businesschannel to learn about -peer0.org2.example.com | [046 01-09 08:56:58.78 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T08:56:58.476Z", "grpc.service": "gossip.Gossip", "grpc.method": "GossipStream", "grpc.peer_address": "172.24.0.6:39402", "grpc.peer_subject": "CN=peer0.org1.example.com,L=San Francisco,ST=California,C=US", "error": "EOF", "grpc.code": "Unknown", "grpc.call_duration": "307.9469ms"} -peer0.org2.example.com | [047 01-09 08:56:58.79 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Validated block [1] in 73ms -peer0.org2.example.com | [048 01-09 08:56:58.82 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Committed block [1] with 1 transaction(s) in 34ms (state_validation=1ms block_commit=27ms state_commit=2ms) -peer0.org2.example.com | [049 01-09 08:56:58.82 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Received block [2] from buffer -peer0.org2.example.com | [04a 01-09 08:56:58.87 UTC] [%{longpkg}] %{callpath} -> INFO Joining gossip network of channel businesschannel with 2 organizations -peer0.org2.example.com | [04b 01-09 08:56:58.87 UTC] [%{longpkg}] %{callpath} -> INFO Learning about the configured anchor peers of Org2MSP for channel businesschannel : [{peer0.org2.example.com 7051}] -peer0.org2.example.com | [04c 01-09 08:56:58.87 UTC] [%{longpkg}] %{callpath} -> INFO Anchor peer with same endpoint, skipping connecting to myself -peer0.org2.example.com | [04d 01-09 08:56:58.87 UTC] [%{longpkg}] %{callpath} -> INFO Learning about the configured anchor peers of Org1MSP for channel businesschannel : [{peer0.org1.example.com 7051}] -peer0.org2.example.com | [04e 01-09 08:56:58.89 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Validated block [2] in 66ms -peer0.org2.example.com | [04f 01-09 08:56:58.92 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Committed block [2] with 1 transaction(s) in 26ms (state_validation=0ms block_commit=19ms state_commit=3ms) -peer0.org2.example.com | [050 01-09 08:56:58.93 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T08:56:58.937Z", "grpc.service": "gossip.Gossip", "grpc.method": "Ping", "grpc.request_deadline": "2019-01-09T08:57:00.937Z", "grpc.peer_address": "172.24.0.5:45226", "grpc.peer_subject": "CN=peer1.org2.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "178.3µs"} -peer0.org2.example.com | [051 01-09 08:56:58.94 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T08:56:43.679Z", "grpc.service": "gossip.Gossip", "grpc.method": "GossipStream", "grpc.peer_address": "172.24.0.5:45150", "grpc.peer_subject": "CN=peer1.org2.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "15.294506s"} -peer0.org2.example.com | [052 01-09 08:56:58.94 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T08:56:58.94Z", "grpc.service": "gossip.Gossip", "grpc.method": "GossipStream", "grpc.request_deadline": "2019-01-09T08:57:08.939Z", "grpc.peer_address": "172.24.0.5:45226", "grpc.peer_subject": "CN=peer1.org2.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "3.5218ms"} -peer0.org2.example.com | [053 01-09 08:57:02.65 UTC] [%{longpkg}] %{callpath} -> INFO Membership view has changed. peers went online: [[peer0.org1.example.com:7051 ] [peer1.org1.example.com:7051 ]] , current view: [[peer1.org2.example.com:7051] [peer0.org1.example.com:7051 ] [peer1.org1.example.com:7051 ]] -peer0.org2.example.com | [054 01-09 08:57:04.99 UTC] [%{longpkg}] %{callpath} -> INFO [][c4352312] Entry chaincode: name:"lscc" -peer0.org2.example.com | [055 01-09 08:57:04.99 UTC] [%{longpkg}] %{callpath} -> INFO Installed Chaincode [exp02] Version [1.0] to peer -peer0.org2.example.com | [056 01-09 08:57:04.99 UTC] [%{longpkg}] %{callpath} -> INFO [][c4352312] Exit chaincode: name:"lscc" (2ms) -peer0.org2.example.com | [057 01-09 08:57:05.00 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T08:57:04.997Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.24.0.8:57444", "grpc.code": "OK", "grpc.call_duration": "3.3153ms"} -peer0.org2.example.com | [058 01-09 08:57:44.44 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Received block [3] from buffer -orderer0.example.com | [03d 01-09 08:58:40.71 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.24.0.8:33378: rpc error: code = Canceled desc = context canceled -orderer0.example.com | [03e 01-09 08:58:40.71 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T08:58:40.707Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.24.0.8:33378", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "7.8979ms"} -orderer0.example.com | [03f 01-09 08:58:41.31 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.24.0.8:33382: rpc error: code = Canceled desc = context canceled -orderer0.example.com | [040 01-09 08:58:41.31 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T08:58:41.307Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.24.0.8:33382", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "7.027ms"} -orderer0.example.com | [041 01-09 08:58:41.51 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.24.0.8:33384: rpc error: code = Canceled desc = context canceled -orderer0.example.com | [042 01-09 08:58:41.51 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T08:58:41.502Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.24.0.8:33384", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "15.4039ms"} -orderer0.example.com | [043 01-09 08:58:41.69 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.24.0.8:33386: rpc error: code = Canceled desc = context canceled -orderer0.example.com | [044 01-09 08:58:41.69 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T08:58:41.683Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.24.0.8:33386", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "9.2124ms"} -orderer0.example.com | [045 01-09 08:58:41.88 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.24.0.8:33388: rpc error: code = Canceled desc = context canceled -orderer0.example.com | [046 01-09 08:58:41.88 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T08:58:41.865Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.24.0.8:33388", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "18.4352ms"} -orderer0.example.com | [047 01-09 08:58:42.10 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.24.0.8:33390: rpc error: code = Canceled desc = context canceled -orderer0.example.com | [048 01-09 08:58:42.10 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T08:58:42.095Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.24.0.8:33390", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "12.9751ms"} -orderer0.example.com | [049 01-09 08:58:42.30 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.24.0.8:33392: rpc error: code = Canceled desc = context canceled -orderer0.example.com | [04a 01-09 08:58:42.30 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T08:58:42.293Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.24.0.8:33392", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "9.7753ms"} -orderer0.example.com | [04b 01-09 08:58:42.49 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.24.0.8:33394: rpc error: code = Canceled desc = context canceled -orderer0.example.com | [04c 01-09 08:58:42.49 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T08:58:42.487Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.24.0.8:33394", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "9.8686ms"} -orderer0.example.com | [04d 01-09 08:58:42.67 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.24.0.8:33396: rpc error: code = Canceled desc = context canceled -orderer0.example.com | [04e 01-09 08:58:42.67 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T08:58:42.671Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.24.0.8:33396", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "8.1079ms"} -orderer0.example.com | [04f 01-09 08:58:42.87 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.24.0.8:33398: rpc error: code = Canceled desc = context canceled -orderer0.example.com | [050 01-09 08:58:42.87 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T08:58:42.859Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.24.0.8:33398", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "12.8998ms"} -orderer0.example.com | [051 01-09 08:58:43.09 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.24.0.8:33400: rpc error: code = Canceled desc = context canceled -orderer0.example.com | [052 01-09 08:58:43.09 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T08:58:43.091Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.24.0.8:33400", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "5.0606ms"} -orderer0.example.com | [053 01-09 08:58:43.28 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.24.0.8:33402: rpc error: code = Canceled desc = context canceled -orderer0.example.com | [054 01-09 08:58:43.28 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T08:58:43.273Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.24.0.8:33402", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "11.0081ms"} -orderer0.example.com | [055 01-09 08:58:43.51 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.24.0.8:33408: rpc error: code = Canceled desc = context canceled -orderer0.example.com | [056 01-09 08:58:43.52 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T08:58:43.509Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.24.0.8:33408", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "12.4437ms"} -orderer0.example.com | [057 01-09 08:58:43.72 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.24.0.8:33410: rpc error: code = Canceled desc = context canceled -orderer0.example.com | [058 01-09 08:58:43.72 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T08:58:43.714Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.24.0.8:33410", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "14.2761ms"} -peer0.org2.example.com | [059 01-09 08:57:44.44 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Validated block [3] in 3ms -peer0.org2.example.com | [05a 01-09 08:57:44.44 UTC] [%{longpkg}] %{callpath} -> INFO Channel [businesschannel]: Handling deploy or update of chaincode [exp02] -peer0.org2.example.com | [05b 01-09 08:57:44.46 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Committed block [3] with 1 transaction(s) in 21ms (state_validation=1ms block_commit=11ms state_commit=4ms) -peer0.org2.example.com | [05c 01-09 08:58:21.57 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Received block [4] from buffer -peer0.org2.example.com | [05d 01-09 08:58:21.57 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Validated block [4] in 1ms -peer0.org2.example.com | [05e 01-09 08:58:21.62 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Committed block [4] with 1 transaction(s) in 47ms (state_validation=0ms block_commit=39ms state_commit=5ms) -peer0.org2.example.com | [05f 01-09 08:58:24.16 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Received block [5] from buffer -peer0.org2.example.com | [060 01-09 08:58:24.16 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Validated block [5] in 3ms -peer0.org2.example.com | [061 01-09 08:58:24.22 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Committed block [5] with 1 transaction(s) in 59ms (state_validation=2ms block_commit=34ms state_commit=11ms) -peer0.org2.example.com | [062 01-09 08:58:38.37 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Received block [6] from buffer -peer0.org2.example.com | [063 01-09 08:58:38.37 UTC] [%{longpkg}] %{callpath} -> WARN De-duplicating identity [Org1MSP0270edfed53a78d7d3c66dc25737f57f956e48ef69dca5ecc91c26679dd4eff3] at index 2 in signature set -peer0.org2.example.com | [064 01-09 08:58:38.38 UTC] [%{longpkg}] %{callpath} -> WARN De-duplicating identity [Org1MSP0270edfed53a78d7d3c66dc25737f57f956e48ef69dca5ecc91c26679dd4eff3] at index 2 in signature set -peer0.org2.example.com | [065 01-09 08:58:38.44 UTC] [%{longpkg}] %{callpath} -> INFO Joining gossip network of channel businesschannel with 3 organizations -peer0.org2.example.com | [066 01-09 08:58:38.44 UTC] [%{longpkg}] %{callpath} -> INFO Learning about the configured anchor peers of Org1MSP for channel businesschannel : [{peer0.org1.example.com 7051}] -peer0.org2.example.com | [067 01-09 08:58:38.44 UTC] [%{longpkg}] %{callpath} -> INFO Learning about the configured anchor peers of Org2MSP for channel businesschannel : [{peer0.org2.example.com 7051}] -peer0.org2.example.com | [068 01-09 08:58:38.44 UTC] [%{longpkg}] %{callpath} -> INFO Anchor peer with same endpoint, skipping connecting to myself -peer0.org2.example.com | [069 01-09 08:58:38.44 UTC] [%{longpkg}] %{callpath} -> INFO No configured anchor peers of Org3MSP for channel businesschannel to learn about -peer0.org2.example.com | [06a 01-09 08:58:38.45 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Validated block [6] in 83ms -peer0.org2.example.com | [06b 01-09 08:58:38.46 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T08:58:38.468Z", "grpc.service": "gossip.Gossip", "grpc.method": "Ping", "grpc.request_deadline": "2019-01-09T08:58:40.467Z", "grpc.peer_address": "172.24.0.4:54072", "grpc.peer_subject": "CN=peer1.org1.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "194.9µs"} -peer0.org2.example.com | [06c 01-09 08:58:38.49 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Committed block [6] with 1 transaction(s) in 37ms (state_validation=1ms block_commit=28ms state_commit=3ms) -peer0.org2.example.com | [06d 01-09 08:58:38.51 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T08:58:38.506Z", "grpc.service": "gossip.Gossip", "grpc.method": "Ping", "grpc.request_deadline": "2019-01-09T08:58:40.505Z", "grpc.peer_address": "172.24.0.5:45438", "grpc.peer_subject": "CN=peer1.org2.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "462.1µs"} -peer0.org2.example.com | [06e 01-09 08:58:38.53 UTC] [%{longpkg}] %{callpath} -> WARN peer1.org1.example.com:7051, PKIid:0be1e243940145f5e3af2c865fe319e551a303f3013dd34afa09d7f05c0653ca isn't responsive: rpc error: code = Unavailable desc = transport is closing -peer0.org2.example.com | [06f 01-09 08:58:38.53 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T08:58:38.476Z", "grpc.service": "gossip.Gossip", "grpc.method": "GossipStream", "grpc.request_deadline": "2019-01-09T08:58:48.476Z", "grpc.peer_address": "172.24.0.4:54072", "grpc.peer_subject": "CN=peer1.org1.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "62.6128ms"} -peer0.org2.example.com | [070 01-09 08:58:38.54 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T08:56:58.558Z", "grpc.service": "gossip.Gossip", "grpc.method": "GossipStream", "grpc.peer_address": "172.24.0.4:53852", "grpc.peer_subject": "CN=peer1.org1.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "1m40.0907345s"} -peer0.org2.example.com | [071 01-09 08:58:38.54 UTC] [%{longpkg}] %{callpath} -> WARN Entering [0be1e243940145f5e3af2c865fe319e551a303f3013dd34afa09d7f05c0653ca] -peer0.org2.example.com | [072 01-09 08:58:38.54 UTC] [%{longpkg}] %{callpath} -> WARN Closing connection to Endpoint: peer1.org1.example.com:7051, InternalEndpoint: , PKI-ID: 0be1e243940145f5e3af2c865fe319e551a303f3013dd34afa09d7f05c0653ca, Metadata: -peer0.org2.example.com | [073 01-09 08:58:38.54 UTC] [%{longpkg}] %{callpath} -> WARN Exiting -peer0.org2.example.com | [074 01-09 08:58:38.56 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T08:58:38.561Z", "grpc.service": "gossip.Gossip", "grpc.method": "Ping", "grpc.request_deadline": "2019-01-09T08:58:40.56Z", "grpc.peer_address": "172.24.0.6:39638", "grpc.peer_subject": "CN=peer0.org1.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "119.1µs"} -peer0.org2.example.com | [075 01-09 08:58:38.57 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T08:58:38.557Z", "grpc.service": "gossip.Gossip", "grpc.method": "GossipStream", "grpc.request_deadline": "2019-01-09T08:58:48.556Z", "grpc.peer_address": "172.24.0.5:45438", "grpc.peer_subject": "CN=peer1.org2.example.com,L=San Francisco,ST=California,C=US", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "21.1654ms"} -peer0.org2.example.com | [076 01-09 08:58:38.58 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T08:58:38.581Z", "grpc.service": "gossip.Gossip", "grpc.method": "Ping", "grpc.request_deadline": "2019-01-09T08:58:40.58Z", "grpc.peer_address": "172.24.0.5:45442", "grpc.peer_subject": "CN=peer1.org2.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "281.3µs"} -peer0.org2.example.com | [077 01-09 08:58:38.58 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T08:58:38.57Z", "grpc.service": "gossip.Gossip", "grpc.method": "GossipStream", "grpc.request_deadline": "2019-01-09T08:58:48.568Z", "grpc.peer_address": "172.24.0.6:39638", "grpc.peer_subject": "CN=peer0.org1.example.com,L=San Francisco,ST=California,C=US", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "18.2878ms"} -peer0.org2.example.com | [078 01-09 08:58:38.59 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T08:58:38.595Z", "grpc.service": "gossip.Gossip", "grpc.method": "Ping", "grpc.request_deadline": "2019-01-09T08:58:40.595Z", "grpc.peer_address": "172.24.0.6:39642", "grpc.peer_subject": "CN=peer0.org1.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "121.9µs"} -peer1.org2.example.com | [02a 01-09 08:56:52.94 UTC] [%{longpkg}] %{callpath} -> INFO system chaincode cscc/businesschannel(github.com/hyperledger/fabric/core/scc/cscc) deployed -peer1.org2.example.com | [02b 01-09 08:56:52.94 UTC] [%{longpkg}] %{callpath} -> INFO Init QSCC -peer1.org2.example.com | [02c 01-09 08:56:52.94 UTC] [%{longpkg}] %{callpath} -> INFO system chaincode qscc/businesschannel(github.com/hyperledger/fabric/core/scc/qscc) deployed -peer1.org2.example.com | [02d 01-09 08:56:52.94 UTC] [%{longpkg}] %{callpath} -> INFO system chaincode +lifecycle/businesschannel(github.com/hyperledger/fabric/core/chaincode/lifecycle) deployed -peer1.org2.example.com | [02e 01-09 08:56:52.94 UTC] [%{longpkg}] %{callpath} -> INFO [][999cb1c1] Exit chaincode: name:"cscc" (84ms) -peer1.org2.example.com | [02f 01-09 08:56:52.94 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T08:56:52.861Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.24.0.8:52390", "grpc.code": "OK", "grpc.call_duration": "86.1783ms"} -peer1.org2.example.com | [030 01-09 08:56:53.89 UTC] [%{longpkg}] %{callpath} -> INFO [][1f8e87e1] Entry chaincode: name:"cscc" -peer1.org2.example.com | [031 01-09 08:56:53.89 UTC] [%{longpkg}] %{callpath} -> INFO [][1f8e87e1] Exit chaincode: name:"cscc" (1ms) -peer1.org2.example.com | [032 01-09 08:56:53.89 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T08:56:53.897Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.24.0.8:52398", "grpc.code": "OK", "grpc.call_duration": "2.7614ms"} -peer1.org2.example.com | [033 01-09 08:56:54.94 UTC] [%{longpkg}] %{callpath} -> INFO [][10ed35a9] Entry chaincode: name:"qscc" -peer1.org2.example.com | [034 01-09 08:56:54.94 UTC] [%{longpkg}] %{callpath} -> INFO [][10ed35a9] Exit chaincode: name:"qscc" (2ms) -peer1.org1.example.com | [014 01-09 08:56:43.45 UTC] [%{longpkg}] %{callpath} -> INFO system chaincode lscc/(github.com/hyperledger/fabric/core/scc/lscc) deployed -peer1.org1.example.com | [015 01-09 08:56:43.45 UTC] [%{longpkg}] %{callpath} -> INFO Init CSCC -peer1.org1.example.com | [016 01-09 08:56:43.45 UTC] [%{longpkg}] %{callpath} -> INFO system chaincode cscc/(github.com/hyperledger/fabric/core/scc/cscc) deployed -peer1.org1.example.com | [017 01-09 08:56:43.46 UTC] [%{longpkg}] %{callpath} -> INFO Init QSCC -peer1.org1.example.com | [018 01-09 08:56:43.46 UTC] [%{longpkg}] %{callpath} -> INFO system chaincode qscc/(github.com/hyperledger/fabric/core/scc/qscc) deployed -peer1.org1.example.com | [019 01-09 08:56:43.48 UTC] [%{longpkg}] %{callpath} -> INFO system chaincode +lifecycle/(github.com/hyperledger/fabric/core/chaincode/lifecycle) deployed -peer1.org1.example.com | [01a 01-09 08:56:43.48 UTC] [%{longpkg}] %{callpath} -> INFO Deployed system chaincodes -peer1.org1.example.com | [01b 01-09 08:56:43.48 UTC] [%{longpkg}] %{callpath} -> INFO Created with config TLS: true, authCacheMaxSize: 1000, authCachePurgeRatio: 0.750000 -peer1.org1.example.com | [01c 01-09 08:56:43.48 UTC] [%{longpkg}] %{callpath} -> INFO Discovery service activated -peer1.org1.example.com | [01d 01-09 08:56:43.48 UTC] [%{longpkg}] %{callpath} -> INFO Starting peer with ID=[name:"peer1.org1.example.com" ], network ID=[dev], address=[peer1.org1.example.com:7051] -peer1.org1.example.com | [01e 01-09 08:56:43.48 UTC] [%{longpkg}] %{callpath} -> INFO Started peer with ID=[name:"peer1.org1.example.com" ], network ID=[dev], address=[peer1.org1.example.com:7051] -peer1.org1.example.com | [01f 01-09 08:56:52.33 UTC] [%{longpkg}] %{callpath} -> INFO [][9c37a1a4] Entry chaincode: name:"cscc" -peer1.org1.example.com | [020 01-09 08:56:52.33 UTC] [%{longpkg}] %{callpath} -> INFO Creating ledger [businesschannel] with genesis block -peer1.org1.example.com | [021 01-09 08:56:52.34 UTC] [%{longpkg}] %{callpath} -> INFO Getting block information from block storage -peer1.org1.example.com | [022 01-09 08:56:52.36 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Committed block [0] with 1 transaction(s) in 18ms (state_validation=1ms block_commit=10ms state_commit=3ms) -peer1.org1.example.com | [023 01-09 08:56:52.36 UTC] [%{longpkg}] %{callpath} -> INFO Created ledger [businesschannel] with genesis block -peer1.org1.example.com | [024 01-09 08:56:52.37 UTC] [%{longpkg}] %{callpath} -> INFO Joining gossip network of channel businesschannel with 2 organizations -peer1.org1.example.com | [025 01-09 08:56:52.37 UTC] [%{longpkg}] %{callpath} -> INFO No configured anchor peers of Org1MSP for channel businesschannel to learn about -peer1.org1.example.com | [026 01-09 08:56:52.37 UTC] [%{longpkg}] %{callpath} -> INFO No configured anchor peers of Org2MSP for channel businesschannel to learn about -peer1.org1.example.com | [027 01-09 08:56:52.40 UTC] [%{longpkg}] %{callpath} -> INFO Updating metadata information, current ledger sequence is at = 0, next expected block is = 1 -peer1.org1.example.com | [028 01-09 08:56:52.41 UTC] [%{longpkg}] %{callpath} -> INFO system chaincode lscc/businesschannel(github.com/hyperledger/fabric/core/scc/lscc) deployed -peer1.org1.example.com | [029 01-09 08:56:52.41 UTC] [%{longpkg}] %{callpath} -> INFO Init CSCC -peer1.org1.example.com | [02a 01-09 08:56:52.41 UTC] [%{longpkg}] %{callpath} -> INFO system chaincode cscc/businesschannel(github.com/hyperledger/fabric/core/scc/cscc) deployed -peer1.org1.example.com | [02b 01-09 08:56:52.41 UTC] [%{longpkg}] %{callpath} -> INFO Init QSCC -peer1.org1.example.com | [02c 01-09 08:56:52.41 UTC] [%{longpkg}] %{callpath} -> INFO system chaincode qscc/businesschannel(github.com/hyperledger/fabric/core/scc/qscc) deployed -peer1.org1.example.com | [02d 01-09 08:56:52.41 UTC] [%{longpkg}] %{callpath} -> INFO system chaincode +lifecycle/businesschannel(github.com/hyperledger/fabric/core/chaincode/lifecycle) deployed -peer1.org1.example.com | [02e 01-09 08:56:52.41 UTC] [%{longpkg}] %{callpath} -> INFO [][9c37a1a4] Exit chaincode: name:"cscc" (79ms) -peer1.org1.example.com | [02f 01-09 08:56:52.41 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T08:56:52.333Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.24.0.8:44152", "grpc.code": "OK", "grpc.call_duration": "81.4715ms"} -peer1.org1.example.com | [030 01-09 08:56:53.57 UTC] [%{longpkg}] %{callpath} -> INFO [][52d9c0d1] Entry chaincode: name:"cscc" -peer1.org1.example.com | [031 01-09 08:56:53.57 UTC] [%{longpkg}] %{callpath} -> INFO [][52d9c0d1] Exit chaincode: name:"cscc" (1ms) -peer1.org1.example.com | [032 01-09 08:56:53.57 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T08:56:53.577Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.24.0.8:44160", "grpc.code": "OK", "grpc.call_duration": "2.0417ms"} -peer1.org1.example.com | [033 01-09 08:56:54.58 UTC] [%{longpkg}] %{callpath} -> INFO [][fe5b5df5] Entry chaincode: name:"qscc" -peer1.org1.example.com | [034 01-09 08:56:54.58 UTC] [%{longpkg}] %{callpath} -> INFO [][fe5b5df5] Exit chaincode: name:"qscc" (1ms) -peer1.org1.example.com | [035 01-09 08:56:54.58 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T08:56:54.581Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.24.0.8:44168", "grpc.code": "OK", "grpc.call_duration": "2.8403ms"} -peer1.org1.example.com | [036 01-09 08:56:57.37 UTC] [%{longpkg}] %{callpath} -> INFO Membership view has changed. peers went online: [[peer0.org1.example.com:7051]] , current view: [[peer0.org1.example.com:7051]] -peer1.org1.example.com | [037 01-09 08:56:58.19 UTC] [%{longpkg}] %{callpath} -> INFO 0be1e243940145f5e3af2c865fe319e551a303f3013dd34afa09d7f05c0653ca : Some peer is already a leader -peer1.org1.example.com | [038 01-09 08:56:58.22 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Received block [1] from buffer -peer1.org1.example.com | [039 01-09 08:56:58.25 UTC] [%{longpkg}] %{callpath} -> INFO Joining gossip network of channel businesschannel with 2 organizations -peer1.org1.example.com | [03a 01-09 08:56:58.25 UTC] [%{longpkg}] %{callpath} -> INFO No configured anchor peers of Org2MSP for channel businesschannel to learn about -peer1.org1.example.com | [03b 01-09 08:56:58.25 UTC] [%{longpkg}] %{callpath} -> INFO Learning about the configured anchor peers of Org1MSP for channel businesschannel : [{peer0.org1.example.com 7051}] -peer1.org1.example.com | [03c 01-09 08:56:58.25 UTC] [%{longpkg}] %{callpath} -> WARN Failed to update ordering service endpoints, due to Channel with businesschannel id was not found -peer1.org1.example.com | [03d 01-09 08:56:58.27 UTC] [%{longpkg}] %{callpath} -> WARN peer0.org1.example.com:7051, PKIid:3d21b0bc142d8ddae3c27797c0c2bf16b05e0414b227484fdbfabf9859231106 isn't responsive: EOF -peer1.org1.example.com | [03e 01-09 08:56:58.27 UTC] [%{longpkg}] %{callpath} -> WARN Entering [3d21b0bc142d8ddae3c27797c0c2bf16b05e0414b227484fdbfabf9859231106] -peer1.org1.example.com | [03f 01-09 08:56:58.27 UTC] [%{longpkg}] %{callpath} -> WARN Closing connection to Endpoint: peer0.org1.example.com:7051, InternalEndpoint: peer0.org1.example.com:7051, PKI-ID: 3d21b0bc142d8ddae3c27797c0c2bf16b05e0414b227484fdbfabf9859231106, Metadata: -peer1.org1.example.com | [040 01-09 08:56:58.27 UTC] [%{longpkg}] %{callpath} -> WARN Exiting -peer1.org1.example.com | [041 01-09 08:56:58.30 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Validated block [1] in 75ms -peer1.org1.example.com | [042 01-09 08:56:58.44 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Committed block [1] with 1 transaction(s) in 143ms (state_validation=3ms block_commit=14ms state_commit=98ms) -peer1.org1.example.com | [043 01-09 08:56:58.44 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Received block [2] from buffer -peer1.org1.example.com | [044 01-09 08:56:58.49 UTC] [%{longpkg}] %{callpath} -> INFO Joining gossip network of channel businesschannel with 2 organizations -peer1.org1.example.com | [045 01-09 08:56:58.49 UTC] [%{longpkg}] %{callpath} -> INFO Learning about the configured anchor peers of Org1MSP for channel businesschannel : [{peer0.org1.example.com 7051}] -peer1.org1.example.com | [046 01-09 08:56:58.49 UTC] [%{longpkg}] %{callpath} -> INFO Learning about the configured anchor peers of Org2MSP for channel businesschannel : [{peer0.org2.example.com 7051}] -peer1.org1.example.com | [047 01-09 08:56:58.49 UTC] [%{longpkg}] %{callpath} -> WARN Failed to update ordering service endpoints, due to Channel with businesschannel id was not found -peer1.org1.example.com | [048 01-09 08:56:58.51 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Validated block [2] in 63ms -peer1.org1.example.com | [049 01-09 08:56:58.55 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Committed block [2] with 1 transaction(s) in 41ms (state_validation=1ms block_commit=32ms state_commit=4ms) -peer1.org1.example.com | [04a 01-09 08:56:58.60 UTC] [%{longpkg}] %{callpath} -> WARN Message GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes isn't valid -peer1.org1.example.com | [04b 01-09 08:57:02.37 UTC] [%{longpkg}] %{callpath} -> INFO Membership view has changed. peers went online: [[peer0.org2.example.com:7051 ]] , current view: [[peer0.org1.example.com:7051] [peer0.org2.example.com:7051 ]] -peer1.org1.example.com | [04c 01-09 08:57:03.45 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T08:57:03.459Z", "grpc.service": "gossip.Gossip", "grpc.method": "Ping", "grpc.request_deadline": "2019-01-09T08:57:05.458Z", "grpc.peer_address": "172.24.0.5:54196", "grpc.peer_subject": "CN=peer1.org2.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "126.7µs"} -peer1.org1.example.com | [04d 01-09 08:57:04.23 UTC] [%{longpkg}] %{callpath} -> INFO [][de68901e] Entry chaincode: name:"lscc" -peer1.org1.example.com | [04e 01-09 08:57:04.23 UTC] [%{longpkg}] %{callpath} -> INFO Installed Chaincode [exp02] Version [1.0] to peer -peer1.org1.example.com | [04f 01-09 08:57:04.23 UTC] [%{longpkg}] %{callpath} -> INFO [][de68901e] Exit chaincode: name:"lscc" (2ms) -peer1.org1.example.com | [050 01-09 08:57:04.23 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T08:57:04.236Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.24.0.8:44232", "grpc.code": "OK", "grpc.call_duration": "3.2615ms"} -peer1.org1.example.com | [051 01-09 08:57:07.37 UTC] [%{longpkg}] %{callpath} -> INFO Membership view has changed. peers went online: [[peer1.org2.example.com:7051 ]] , current view: [[peer0.org1.example.com:7051] [peer0.org2.example.com:7051 ] [peer1.org2.example.com:7051 ]] -peer1.org1.example.com | [052 01-09 08:57:44.46 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Received block [3] from buffer -peer1.org1.example.com | [053 01-09 08:57:44.47 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Validated block [3] in 5ms -peer1.org1.example.com | [054 01-09 08:57:44.47 UTC] [%{longpkg}] %{callpath} -> INFO Channel [businesschannel]: Handling deploy or update of chaincode [exp02] -peer1.org1.example.com | [055 01-09 08:57:44.51 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Committed block [3] with 1 transaction(s) in 42ms (state_validation=2ms block_commit=27ms state_commit=6ms) -peer1.org1.example.com | [056 01-09 08:58:21.58 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Received block [4] from buffer -peer1.org1.example.com | [057 01-09 08:58:21.58 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Validated block [4] in 2ms -peer1.org1.example.com | [058 01-09 08:58:21.62 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Committed block [4] with 1 transaction(s) in 32ms (state_validation=1ms block_commit=25ms state_commit=2ms) -peer1.org1.example.com | [059 01-09 08:58:24.16 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Received block [5] from buffer -peer1.org1.example.com | [05a 01-09 08:58:24.17 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Validated block [5] in 3ms -peer1.org1.example.com | [05b 01-09 08:58:24.22 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Committed block [5] with 1 transaction(s) in 46ms (state_validation=0ms block_commit=33ms state_commit=6ms) -peer1.org1.example.com | [05c 01-09 08:58:38.35 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Received block [6] from buffer -peer1.org1.example.com | [05d 01-09 08:58:38.37 UTC] [%{longpkg}] %{callpath} -> WARN De-duplicating identity [Org1MSP0270edfed53a78d7d3c66dc25737f57f956e48ef69dca5ecc91c26679dd4eff3] at index 2 in signature set -peer1.org1.example.com | [05e 01-09 08:58:38.37 UTC] [%{longpkg}] %{callpath} -> WARN De-duplicating identity [Org1MSP0270edfed53a78d7d3c66dc25737f57f956e48ef69dca5ecc91c26679dd4eff3] at index 2 in signature set -peer1.org1.example.com | [05f 01-09 08:58:38.43 UTC] [%{longpkg}] %{callpath} -> INFO Joining gossip network of channel businesschannel with 3 organizations -peer1.org1.example.com | [060 01-09 08:58:38.43 UTC] [%{longpkg}] %{callpath} -> INFO No configured anchor peers of Org3MSP for channel businesschannel to learn about -peer1.org1.example.com | [061 01-09 08:58:38.43 UTC] [%{longpkg}] %{callpath} -> INFO Learning about the configured anchor peers of Org1MSP for channel businesschannel : [{peer0.org1.example.com 7051}] -peer1.org1.example.com | [062 01-09 08:58:38.43 UTC] [%{longpkg}] %{callpath} -> INFO Learning about the configured anchor peers of Org2MSP for channel businesschannel : [{peer0.org2.example.com 7051}] -peer0.org2.example.com | [079 01-09 08:58:42.54 UTC] [%{longpkg}] %{callpath} -> INFO Membership view has changed. peers went offline: [[peer1.org1.example.com:7051 ]] , current view: [[peer1.org2.example.com:7051] [peer0.org1.example.com:7051 ]] -peer0.org2.example.com | [07a 01-09 08:58:43.37 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T08:58:43.376Z", "grpc.service": "gossip.Gossip", "grpc.method": "Ping", "grpc.request_deadline": "2019-01-09T08:58:45.375Z", "grpc.peer_address": "172.24.0.4:54120", "grpc.peer_subject": "CN=peer1.org1.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "127.9µs"} -peer0.org2.example.com | [07b 01-09 08:58:43.41 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T08:58:43.385Z", "grpc.service": "gossip.Gossip", "grpc.method": "GossipStream", "grpc.peer_address": "172.24.0.4:54120", "grpc.peer_subject": "CN=peer1.org1.example.com,L=San Francisco,ST=California,C=US", "error": "EOF", "grpc.code": "Unknown", "grpc.call_duration": "24.8678ms"} -peer0.org2.example.com | [07c 01-09 08:58:47.54 UTC] [%{longpkg}] %{callpath} -> INFO Membership view has changed. peers went online: [[peer1.org1.example.com:7051 ]] , current view: [[peer1.org2.example.com:7051] [peer0.org1.example.com:7051 ] [peer1.org1.example.com:7051 ]] -peer0.org2.example.com | [07d 01-09 08:58:48.95 UTC] [%{longpkg}] %{callpath} -> INFO [][485d6103] Entry chaincode: name:"cscc" -peer0.org2.example.com | [07e 01-09 08:58:48.96 UTC] [%{longpkg}] %{callpath} -> INFO [][485d6103] Exit chaincode: name:"cscc" (1ms) -peer0.org2.example.com | [07f 01-09 08:58:48.96 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T08:58:48.958Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.24.0.8:57694", "grpc.code": "OK", "grpc.call_duration": "2.2795ms"} -peer0.org2.example.com | [080 01-09 08:58:50.12 UTC] [%{longpkg}] %{callpath} -> INFO [][555dba6c] Entry chaincode: name:"qscc" -peer0.org2.example.com | [081 01-09 08:58:50.13 UTC] [%{longpkg}] %{callpath} -> INFO [][555dba6c] Exit chaincode: name:"qscc" (2ms) -peer0.org2.example.com | [082 01-09 08:58:50.13 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T08:58:50.127Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.24.0.8:57702", "grpc.code": "OK", "grpc.call_duration": "4.0415ms"} -peer1.org2.example.com | [035 01-09 08:56:54.94 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T08:56:54.941Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.24.0.8:52408", "grpc.code": "OK", "grpc.call_duration": "4.0845ms"} -peer1.org2.example.com | [036 01-09 08:56:57.91 UTC] [%{longpkg}] %{callpath} -> INFO Membership view has changed. peers went online: [[peer0.org2.example.com:7051]] , current view: [[peer0.org2.example.com:7051]] -peer1.org2.example.com | [037 01-09 08:56:58.72 UTC] [%{longpkg}] %{callpath} -> INFO 54071d960ff51087a5562fde4801dfa904c634c6c3c38da0d982a0b1f62f0a27 : Some peer is already a leader -peer1.org2.example.com | [038 01-09 08:56:58.74 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Received block [1] from buffer -peer1.org2.example.com | [039 01-09 08:56:58.77 UTC] [%{longpkg}] %{callpath} -> INFO Joining gossip network of channel businesschannel with 2 organizations -peer1.org2.example.com | [03a 01-09 08:56:58.78 UTC] [%{longpkg}] %{callpath} -> INFO Learning about the configured anchor peers of Org1MSP for channel businesschannel : [{peer0.org1.example.com 7051}] -peer1.org2.example.com | [03b 01-09 08:56:58.79 UTC] [%{longpkg}] %{callpath} -> INFO No configured anchor peers of Org2MSP for channel businesschannel to learn about -peer1.org2.example.com | [03c 01-09 08:56:58.80 UTC] [%{longpkg}] %{callpath} -> WARN Failed to update ordering service endpoints, due to Channel with businesschannel id was not found -peer1.org2.example.com | [03d 01-09 08:56:58.84 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Validated block [1] in 107ms -peer1.org2.example.com | [03e 01-09 08:56:58.88 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Committed block [1] with 1 transaction(s) in 33ms (state_validation=0ms block_commit=21ms state_commit=2ms) -peer1.org2.example.com | [03f 01-09 08:56:58.88 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Received block [2] from buffer -peer1.org2.example.com | [040 01-09 08:56:58.92 UTC] [%{longpkg}] %{callpath} -> INFO Joining gossip network of channel businesschannel with 2 organizations -peer1.org2.example.com | [041 01-09 08:56:58.92 UTC] [%{longpkg}] %{callpath} -> INFO Learning about the configured anchor peers of Org2MSP for channel businesschannel : [{peer0.org2.example.com 7051}] -peer1.org2.example.com | [042 01-09 08:56:58.92 UTC] [%{longpkg}] %{callpath} -> INFO Learning about the configured anchor peers of Org1MSP for channel businesschannel : [{peer0.org1.example.com 7051}] -peer1.org2.example.com | [043 01-09 08:56:58.92 UTC] [%{longpkg}] %{callpath} -> WARN Failed to update ordering service endpoints, due to Channel with businesschannel id was not found -peer1.org2.example.com | [044 01-09 08:56:58.95 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Validated block [2] in 69ms -peer1.org2.example.com | [045 01-09 08:56:58.98 UTC] [%{longpkg}] %{callpath} -> WARN peer0.org2.example.com:7051, PKIid:75b2768046f1cff79a75d29027b3162b4c2d489ed2c22c48403d0760a7c0a76b isn't responsive: EOF -peer1.org2.example.com | [046 01-09 08:56:58.98 UTC] [%{longpkg}] %{callpath} -> WARN Entering [75b2768046f1cff79a75d29027b3162b4c2d489ed2c22c48403d0760a7c0a76b] -peer1.org2.example.com | [047 01-09 08:56:58.98 UTC] [%{longpkg}] %{callpath} -> WARN Closing connection to Endpoint: peer0.org2.example.com:7051, InternalEndpoint: peer0.org2.example.com:7051, PKI-ID: 75b2768046f1cff79a75d29027b3162b4c2d489ed2c22c48403d0760a7c0a76b, Metadata: -peer1.org2.example.com | [048 01-09 08:56:58.98 UTC] [%{longpkg}] %{callpath} -> WARN Exiting -peer1.org2.example.com | [049 01-09 08:56:58.99 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T08:56:58.993Z", "grpc.service": "gossip.Gossip", "grpc.method": "Ping", "grpc.request_deadline": "2019-01-09T08:57:00.993Z", "grpc.peer_address": "172.24.0.3:51326", "grpc.peer_subject": "CN=peer0.org2.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "136.5µs"} -peer1.org2.example.com | [04a 01-09 08:56:58.99 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Committed block [2] with 1 transaction(s) in 38ms (state_validation=0ms block_commit=22ms state_commit=11ms) -peer1.org2.example.com | [04b 01-09 08:57:00.39 UTC] [%{longpkg}] %{callpath} -> WARN StateInfo message GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"\013\341\342C\224\001E\365\343\257,\206_\343\031\345Q\243\003\363\001=\323J\372\t\327\360\\\006S\312" channel_MAC:"\344\265j[\3752\300\2262w\333\215z9\310\264&\370\364\372}~\262\333\217\027\344\276\327Lt\315" properties: > , Envelope: 98 bytes, Signature: 70 bytes is found invalid: PKIID wasn't found -peer1.org2.example.com | [04c 01-09 08:57:00.39 UTC] [%{longpkg}] %{callpath} -> WARN Message GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"\013\341\342C\224\001E\365\343\257,\206_\343\031\345Q\243\003\363\001=\323J\372\t\327\360\\\006S\312" channel_MAC:"\344\265j[\3752\300\2262w\333\215z9\310\264&\370\364\372}~\262\333\217\027\344\276\327Lt\315" properties: > , Envelope: 98 bytes, Signature: 70 bytes isn't valid -peer1.org2.example.com | [04d 01-09 08:57:02.91 UTC] [%{longpkg}] %{callpath} -> INFO Membership view has changed. peers went online: [[peer0.org1.example.com:7051 ]] , current view: [[peer0.org1.example.com:7051 ] [peer0.org2.example.com:7051]] -peer1.org2.example.com | [04e 01-09 08:57:05.67 UTC] [%{longpkg}] %{callpath} -> INFO [][306e30fa] Entry chaincode: name:"lscc" -peer1.org2.example.com | [04f 01-09 08:57:05.67 UTC] [%{longpkg}] %{callpath} -> INFO Installed Chaincode [exp02] Version [1.0] to peer -peer1.org2.example.com | [050 01-09 08:57:05.67 UTC] [%{longpkg}] %{callpath} -> INFO [][306e30fa] Exit chaincode: name:"lscc" (2ms) -peer1.org2.example.com | [051 01-09 08:57:05.67 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T08:57:05.67Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.24.0.8:52474", "grpc.code": "OK", "grpc.call_duration": "3.3722ms"} -peer1.org2.example.com | [052 01-09 08:57:07.91 UTC] [%{longpkg}] %{callpath} -> INFO Membership view has changed. peers went online: [[peer1.org1.example.com:7051 ]] , current view: [[peer0.org2.example.com:7051] [peer0.org1.example.com:7051 ] [peer1.org1.example.com:7051 ]] -peer1.org2.example.com | [053 01-09 08:57:42.96 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T08:57:42.962Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.24.0.8:52510", "grpc.code": "OK", "grpc.call_duration": "2.1798ms"} -peer1.org2.example.com | [054 01-09 08:57:44.45 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Received block [3] from buffer -peer1.org2.example.com | [055 01-09 08:57:44.48 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Validated block [3] in 31ms -peer1.org2.example.com | [056 01-09 08:57:44.48 UTC] [%{longpkg}] %{callpath} -> INFO Channel [businesschannel]: Handling deploy or update of chaincode [exp02] -peer1.org2.example.com | [057 01-09 08:57:44.51 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Committed block [3] with 1 transaction(s) in 30ms (state_validation=2ms block_commit=20ms state_commit=3ms) -peer1.org2.example.com | [058 01-09 08:57:45.20 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][7e23bb7e] Entry chaincode: name:"exp02" -peer1.org2.example.com | [059 01-09 08:57:45.22 UTC] [%{longpkg}] %{callpath} -> INFO building chaincode with ldflagsOpt: '-ldflags "-linkmode external -extldflags '-static'"' -peer1.org2.example.com | [05a 01-09 08:58:19.30 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][7e23bb7e] Exit chaincode: name:"exp02" (34171ms) -peer1.org2.example.com | [05b 01-09 08:58:19.30 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T08:57:45.199Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.24.0.8:52514", "grpc.code": "OK", "grpc.call_duration": "34.1736352s"} -peer1.org2.example.com | [05c 01-09 08:58:19.76 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][43b80dee] Entry chaincode: name:"exp02" -peer1.org2.example.com | [05d 01-09 08:58:19.77 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][43b80dee] Exit chaincode: name:"exp02" (4ms) -peer1.org1.example.com | [063 01-09 08:58:38.43 UTC] [%{longpkg}] %{callpath} -> WARN Failed to update ordering service endpoints, due to Channel with businesschannel id was not found -peer1.org1.example.com | [064 01-09 08:58:38.48 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Validated block [6] in 116ms -peer1.org1.example.com | [065 01-09 08:58:38.52 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Committed block [6] with 1 transaction(s) in 38ms (state_validation=1ms block_commit=17ms state_commit=5ms) -peer1.org1.example.com | [066 01-09 08:58:38.56 UTC] [%{longpkg}] %{callpath} -> WARN peer0.org1.example.com:7051, PKIid:3d21b0bc142d8ddae3c27797c0c2bf16b05e0414b227484fdbfabf9859231106 isn't responsive: EOF -peer1.org1.example.com | [067 01-09 08:58:38.56 UTC] [%{longpkg}] %{callpath} -> WARN peer0.org2.example.com:7051, PKIid:75b2768046f1cff79a75d29027b3162b4c2d489ed2c22c48403d0760a7c0a76b isn't responsive: EOF -peer1.org1.example.com | [068 01-09 08:58:38.56 UTC] [%{longpkg}] %{callpath} -> WARN Entering [3d21b0bc142d8ddae3c27797c0c2bf16b05e0414b227484fdbfabf9859231106] -peer1.org1.example.com | [069 01-09 08:58:38.56 UTC] [%{longpkg}] %{callpath} -> WARN Closing connection to Endpoint: peer0.org1.example.com:7051, InternalEndpoint: peer0.org1.example.com:7051, PKI-ID: 3d21b0bc142d8ddae3c27797c0c2bf16b05e0414b227484fdbfabf9859231106, Metadata: -peer1.org1.example.com | [06a 01-09 08:58:38.56 UTC] [%{longpkg}] %{callpath} -> WARN Exiting -peer1.org1.example.com | [06b 01-09 08:58:38.56 UTC] [%{longpkg}] %{callpath} -> WARN Entering [75b2768046f1cff79a75d29027b3162b4c2d489ed2c22c48403d0760a7c0a76b] -peer1.org1.example.com | [06c 01-09 08:58:38.56 UTC] [%{longpkg}] %{callpath} -> WARN Closing connection to Endpoint: peer0.org2.example.com:7051, InternalEndpoint: , PKI-ID: 75b2768046f1cff79a75d29027b3162b4c2d489ed2c22c48403d0760a7c0a76b, Metadata: -peer1.org1.example.com | [06d 01-09 08:58:38.56 UTC] [%{longpkg}] %{callpath} -> WARN Exiting -peer1.org1.example.com | [06e 01-09 08:58:43.39 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T08:58:43.398Z", "grpc.service": "gossip.Gossip", "grpc.method": "Ping", "grpc.request_deadline": "2019-01-09T08:58:45.397Z", "grpc.peer_address": "172.24.0.3:35336", "grpc.peer_subject": "CN=peer0.org2.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "110.3µs"} -peer1.org1.example.com | [06f 01-09 08:58:48.75 UTC] [%{longpkg}] %{callpath} -> INFO [][bc8f0fee] Entry chaincode: name:"cscc" -peer1.org1.example.com | [070 01-09 08:58:48.75 UTC] [%{longpkg}] %{callpath} -> INFO [][bc8f0fee] Exit chaincode: name:"cscc" (1ms) -peer1.org2.example.com | [05e 01-09 08:58:19.77 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T08:58:19.765Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.24.0.8:52552", "grpc.code": "OK", "grpc.call_duration": "7.4823ms"} -peer1.org2.example.com | [05f 01-09 08:58:21.59 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Received block [4] from buffer -peer1.org2.example.com | [060 01-09 08:58:21.59 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Validated block [4] in 2ms -peer1.org2.example.com | [061 01-09 08:58:21.62 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Committed block [4] with 1 transaction(s) in 24ms (state_validation=0ms block_commit=17ms state_commit=2ms) -peer1.org2.example.com | [062 01-09 08:58:21.94 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][54f2dd5f] Entry chaincode: name:"exp02" -peer1.org2.example.com | [063 01-09 08:58:21.95 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][54f2dd5f] Exit chaincode: name:"exp02" (4ms) -peer1.org2.example.com | [064 01-09 08:58:21.95 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T08:58:21.945Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.24.0.8:52556", "grpc.code": "OK", "grpc.call_duration": "6.457ms"} -peer1.org2.example.com | [065 01-09 08:58:22.14 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][621a2ba9] Entry chaincode: name:"exp02" -peer1.org2.example.com | [066 01-09 08:58:22.14 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][621a2ba9] Exit chaincode: name:"exp02" (6ms) -peer1.org2.example.com | [067 01-09 08:58:22.14 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T08:58:22.139Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.24.0.8:52560", "grpc.code": "OK", "grpc.call_duration": "9.4103ms"} -peer1.org2.example.com | [068 01-09 08:58:24.18 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Received block [5] from buffer -peer1.org2.example.com | [069 01-09 08:58:24.18 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Validated block [5] in 3ms -peer1.org2.example.com | [06a 01-09 08:58:24.22 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Committed block [5] with 1 transaction(s) in 36ms (state_validation=1ms block_commit=25ms state_commit=5ms) -peer1.org2.example.com | [06b 01-09 08:58:38.38 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Received block [6] from buffer -peer1.org2.example.com | [06c 01-09 08:58:38.38 UTC] [%{longpkg}] %{callpath} -> WARN De-duplicating identity [Org1MSP0270edfed53a78d7d3c66dc25737f57f956e48ef69dca5ecc91c26679dd4eff3] at index 2 in signature set -peer1.org2.example.com | [06d 01-09 08:58:38.39 UTC] [%{longpkg}] %{callpath} -> WARN De-duplicating identity [Org1MSP0270edfed53a78d7d3c66dc25737f57f956e48ef69dca5ecc91c26679dd4eff3] at index 2 in signature set -peer1.org2.example.com | [06e 01-09 08:58:38.44 UTC] [%{longpkg}] %{callpath} -> INFO Joining gossip network of channel businesschannel with 3 organizations -peer1.org2.example.com | [06f 01-09 08:58:38.44 UTC] [%{longpkg}] %{callpath} -> INFO No configured anchor peers of Org3MSP for channel businesschannel to learn about -peer1.org2.example.com | [070 01-09 08:58:38.44 UTC] [%{longpkg}] %{callpath} -> INFO Learning about the configured anchor peers of Org1MSP for channel businesschannel : [{peer0.org1.example.com 7051}] -peer1.org2.example.com | [071 01-09 08:58:38.46 UTC] [%{longpkg}] %{callpath} -> INFO Learning about the configured anchor peers of Org2MSP for channel businesschannel : [{peer0.org2.example.com 7051}] -peer1.org2.example.com | [072 01-09 08:58:38.46 UTC] [%{longpkg}] %{callpath} -> WARN Failed to update ordering service endpoints, due to Channel with businesschannel id was not found -peer1.org2.example.com | [073 01-09 08:58:38.48 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Validated block [6] in 104ms -peer1.org2.example.com | [074 01-09 08:58:38.52 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Committed block [6] with 1 transaction(s) in 30ms (state_validation=4ms block_commit=17ms state_commit=5ms) -peer1.org2.example.com | [075 01-09 08:58:38.54 UTC] [%{longpkg}] %{callpath} -> WARN peer0.org1.example.com:7051, PKIid:3d21b0bc142d8ddae3c27797c0c2bf16b05e0414b227484fdbfabf9859231106 isn't responsive: EOF -peer1.org2.example.com | [076 01-09 08:58:38.54 UTC] [%{longpkg}] %{callpath} -> WARN Entering [3d21b0bc142d8ddae3c27797c0c2bf16b05e0414b227484fdbfabf9859231106] -peer1.org2.example.com | [077 01-09 08:58:38.54 UTC] [%{longpkg}] %{callpath} -> WARN Closing connection to Endpoint: peer0.org1.example.com:7051, InternalEndpoint: , PKI-ID: 3d21b0bc142d8ddae3c27797c0c2bf16b05e0414b227484fdbfabf9859231106, Metadata: -peer1.org2.example.com | [078 01-09 08:58:38.54 UTC] [%{longpkg}] %{callpath} -> WARN Exiting -peer1.org2.example.com | [079 01-09 08:58:38.55 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T08:56:58.996Z", "grpc.service": "gossip.Gossip", "grpc.method": "GossipStream", "grpc.peer_address": "172.24.0.3:51326", "grpc.peer_subject": "CN=peer0.org2.example.com,L=San Francisco,ST=California,C=US", "error": "EOF", "grpc.code": "Unknown", "grpc.call_duration": "1m39.6691397s"} -peer1.org2.example.com | [07a 01-09 08:58:38.90 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T08:58:38.901Z", "grpc.service": "gossip.Gossip", "grpc.method": "Ping", "grpc.request_deadline": "2019-01-09T08:58:40.9Z", "grpc.peer_address": "172.24.0.6:50678", "grpc.peer_subject": "CN=peer0.org1.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "168.3µs"} -peer1.org2.example.com | [07b 01-09 08:58:49.14 UTC] [%{longpkg}] %{callpath} -> INFO [][4a7dfa2e] Entry chaincode: name:"cscc" -peer1.org2.example.com | [07c 01-09 08:58:49.14 UTC] [%{longpkg}] %{callpath} -> INFO [][4a7dfa2e] Exit chaincode: name:"cscc" (1ms) -peer1.org2.example.com | [07d 01-09 08:58:49.14 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T08:58:49.142Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.24.0.8:52722", "grpc.code": "OK", "grpc.call_duration": "2.9308ms"} -peer1.org2.example.com | [07e 01-09 08:58:50.36 UTC] [%{longpkg}] %{callpath} -> INFO [][5f020030] Entry chaincode: name:"qscc" -peer1.org2.example.com | [07f 01-09 08:58:50.36 UTC] [%{longpkg}] %{callpath} -> INFO [][5f020030] Exit chaincode: name:"qscc" (3ms) -peer1.org2.example.com | [080 01-09 08:58:50.36 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T08:58:50.357Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.24.0.8:52730", "grpc.code": "OK", "grpc.call_duration": "7.4611ms"} -peer1.org1.example.com | [071 01-09 08:58:48.75 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T08:58:48.755Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.24.0.8:44484", "grpc.code": "OK", "grpc.call_duration": "2.4006ms"} -peer1.org1.example.com | [072 01-09 08:58:49.92 UTC] [%{longpkg}] %{callpath} -> INFO [][63491bfb] Entry chaincode: name:"qscc" -peer1.org1.example.com | [073 01-09 08:58:49.93 UTC] [%{longpkg}] %{callpath} -> INFO [][63491bfb] Exit chaincode: name:"qscc" (3ms) -peer1.org1.example.com | [074 01-09 08:58:49.93 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T08:58:49.926Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.24.0.8:44492", "grpc.code": "OK", "grpc.call_duration": "5.7817ms"} +peer1.org1.example.com | [002 03-12 01:56:12.90 UTC] [%{longpkg}] %{callpath} -> INFO Initializing ledger mgmt +peer1.org1.example.com | [003 03-12 01:56:12.90 UTC] [%{longpkg}] %{callpath} -> INFO Initializing ledger provider +peer1.org1.example.com | [004 03-12 01:56:12.99 UTC] [%{longpkg}] %{callpath} -> INFO ledger provider Initialized +peer1.org1.example.com | [005 03-12 01:56:13.03 UTC] [%{longpkg}] %{callpath} -> INFO ledger mgmt initialized +peer1.org1.example.com | [006 03-12 01:56:13.03 UTC] [%{longpkg}] %{callpath} -> INFO Auto-detected peer address: 172.28.0.5:7051 +peer1.org1.example.com | [007 03-12 01:56:13.03 UTC] [%{longpkg}] %{callpath} -> INFO Returning peer1.org1.example.com:7051 +peer1.org1.example.com | [008 03-12 01:56:13.03 UTC] [%{longpkg}] %{callpath} -> INFO Auto-detected peer address: 172.28.0.5:7051 +peer1.org1.example.com | [009 03-12 01:56:13.03 UTC] [%{longpkg}] %{callpath} -> INFO Returning peer1.org1.example.com:7051 +peer1.org1.example.com | [00a 03-12 01:56:13.05 UTC] [%{longpkg}] %{callpath} -> INFO Starting peer with TLS enabled +peer1.org1.example.com | [00b 03-12 01:56:13.06 UTC] [%{longpkg}] %{callpath} -> INFO Entering computeChaincodeEndpoint with peerHostname: peer1.org1.example.com +peer1.org1.example.com | [00c 03-12 01:56:13.06 UTC] [%{longpkg}] %{callpath} -> INFO Exit with ccEndpoint: peer1.org1.example.com:7052 +peer1.org1.example.com | [00d 03-12 01:56:13.07 UTC] [%{longpkg}] %{callpath} -> INFO system chaincode lscc(github.com/hyperledger/fabric/core/scc/lscc) registered +peer1.org1.example.com | [00e 03-12 01:56:13.07 UTC] [%{longpkg}] %{callpath} -> INFO system chaincode cscc(github.com/hyperledger/fabric/core/scc/cscc) registered +peer1.org1.example.com | [00f 03-12 01:56:13.07 UTC] [%{longpkg}] %{callpath} -> INFO system chaincode qscc(github.com/hyperledger/fabric/core/scc/qscc) registered +peer1.org1.example.com | [010 03-12 01:56:13.07 UTC] [%{longpkg}] %{callpath} -> INFO system chaincode (+lifecycle,github.com/hyperledger/fabric/core/chaincode/lifecycle,true) disabled +peer1.org1.example.com | [011 03-12 01:56:13.09 UTC] [%{longpkg}] %{callpath} -> INFO Initialize gossip with endpoint peer1.org1.example.com:7051 and bootstrap set [peer0.org1.example.com:7051] +peer1.org1.example.com | [012 03-12 01:56:13.09 UTC] [%{longpkg}] %{callpath} -> INFO Creating gossip service with self membership of Endpoint: peer1.org1.example.com:7051, InternalEndpoint: peer1.org1.example.com:7051, PKI-ID: 0be1e243940145f5e3af2c865fe319e551a303f3013dd34afa09d7f05c0653ca, Metadata: +peer1.org1.example.com | [013 03-12 01:56:13.09 UTC] [%{longpkg}] %{callpath} -> INFO Gossip instance peer1.org1.example.com:7051 started +peer1.org1.example.com | [014 03-12 01:56:13.10 UTC] [%{longpkg}] %{callpath} -> INFO system chaincode lscc/(github.com/hyperledger/fabric/core/scc/lscc) deployed +peer1.org1.example.com | [015 03-12 01:56:13.10 UTC] [%{longpkg}] %{callpath} -> INFO Init CSCC +peer1.org1.example.com | [016 03-12 01:56:13.10 UTC] [%{longpkg}] %{callpath} -> INFO system chaincode cscc/(github.com/hyperledger/fabric/core/scc/cscc) deployed +peer1.org1.example.com | [017 03-12 01:56:13.10 UTC] [%{longpkg}] %{callpath} -> INFO Init QSCC +peer1.org1.example.com | [018 03-12 01:56:13.10 UTC] [%{longpkg}] %{callpath} -> INFO system chaincode qscc/(github.com/hyperledger/fabric/core/scc/qscc) deployed +peer1.org1.example.com | [019 03-12 01:56:13.11 UTC] [%{longpkg}] %{callpath} -> INFO system chaincode (+lifecycle,github.com/hyperledger/fabric/core/chaincode/lifecycle) disabled +peer1.org1.example.com | [01a 03-12 01:56:13.11 UTC] [%{longpkg}] %{callpath} -> INFO Deployed system chaincodes +peer1.org1.example.com | [01b 03-12 01:56:13.11 UTC] [%{longpkg}] %{callpath} -> INFO Created with config TLS: true, authCacheMaxSize: 1000, authCachePurgeRatio: 0.750000 +peer1.org1.example.com | [01c 03-12 01:56:13.11 UTC] [%{longpkg}] %{callpath} -> INFO Discovery service activated +peer1.org1.example.com | [01d 03-12 01:56:13.11 UTC] [%{longpkg}] %{callpath} -> INFO Starting peer with ID=[name:"peer1.org1.example.com" ], network ID=[dev], address=[peer1.org1.example.com:7051] +peer1.org1.example.com | [01e 03-12 01:56:13.12 UTC] [%{longpkg}] %{callpath} -> INFO Started peer with ID=[name:"peer1.org1.example.com" ], network ID=[dev], address=[peer1.org1.example.com:7051] +peer1.org1.example.com | [01f 03-12 01:56:22.05 UTC] [%{longpkg}] %{callpath} -> INFO [][89e5aea5] Entry chaincode: name:"cscc" +peer1.org1.example.com | [020 03-12 01:56:22.05 UTC] [%{longpkg}] %{callpath} -> INFO Creating ledger [businesschannel] with genesis block +peer1.org1.example.com | [021 03-12 01:56:22.05 UTC] [%{longpkg}] %{callpath} -> INFO Getting block information from block storage +peer1.org1.example.com | [022 03-12 01:56:22.07 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Committed block [0] with 1 transaction(s) in 12ms (state_validation=1ms block_commit=7ms state_commit=2ms) +peer1.org1.example.com | [023 03-12 01:56:22.07 UTC] [%{longpkg}] %{callpath} -> INFO Created ledger [businesschannel] with genesis block +peer1.org1.example.com | [024 03-12 01:56:22.09 UTC] [%{longpkg}] %{callpath} -> INFO Joining gossip network of channel businesschannel with 2 organizations +peer1.org1.example.com | [025 03-12 01:56:22.09 UTC] [%{longpkg}] %{callpath} -> INFO No configured anchor peers of Org2MSP for channel businesschannel to learn about +peer1.org1.example.com | [026 03-12 01:56:22.09 UTC] [%{longpkg}] %{callpath} -> INFO No configured anchor peers of Org1MSP for channel businesschannel to learn about +peer1.org1.example.com | [027 03-12 01:56:22.11 UTC] [%{longpkg}] %{callpath} -> INFO Updating metadata information, current ledger sequence is at = 0, next expected block is = 1 +peer1.org1.example.com | [028 03-12 01:56:22.11 UTC] [%{longpkg}] %{callpath} -> INFO system chaincode lscc/businesschannel(github.com/hyperledger/fabric/core/scc/lscc) deployed +peer1.org1.example.com | [029 03-12 01:56:22.11 UTC] [%{longpkg}] %{callpath} -> INFO Init CSCC +peer1.org1.example.com | [02a 03-12 01:56:22.11 UTC] [%{longpkg}] %{callpath} -> INFO system chaincode cscc/businesschannel(github.com/hyperledger/fabric/core/scc/cscc) deployed +peer1.org1.example.com | [02b 03-12 01:56:22.11 UTC] [%{longpkg}] %{callpath} -> INFO Init QSCC +peer1.org1.example.com | [02c 03-12 01:56:22.11 UTC] [%{longpkg}] %{callpath} -> INFO system chaincode qscc/businesschannel(github.com/hyperledger/fabric/core/scc/qscc) deployed +peer1.org1.example.com | [02d 03-12 01:56:22.11 UTC] [%{longpkg}] %{callpath} -> INFO system chaincode (+lifecycle,github.com/hyperledger/fabric/core/chaincode/lifecycle) disabled +peer1.org1.example.com | [02e 03-12 01:56:22.11 UTC] [%{longpkg}] %{callpath} -> INFO [][89e5aea5] Exit chaincode: name:"cscc" (69ms) +peer1.org1.example.com | [02f 03-12 01:56:22.12 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-03-12T01:56:22.048Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.28.0.3:50292", "grpc.code": "OK", "grpc.call_duration": "71.4669ms"} +peer1.org1.example.com | [030 03-12 01:56:23.45 UTC] [%{longpkg}] %{callpath} -> INFO [][1168ea2a] Entry chaincode: name:"cscc" +peer1.org1.example.com | [031 03-12 01:56:23.46 UTC] [%{longpkg}] %{callpath} -> INFO [][1168ea2a] Exit chaincode: name:"cscc" (1ms) +peer1.org1.example.com | [032 03-12 01:56:23.46 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-03-12T01:56:23.458Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.28.0.3:50300", "grpc.code": "OK", "grpc.call_duration": "1.9543ms"} +peer1.org1.example.com | [033 03-12 01:56:24.47 UTC] [%{longpkg}] %{callpath} -> INFO [][fd328888] Entry chaincode: name:"qscc" +peer1.org1.example.com | [034 03-12 01:56:24.48 UTC] [%{longpkg}] %{callpath} -> INFO [][fd328888] Exit chaincode: name:"qscc" (2ms) +peer1.org1.example.com | [035 03-12 01:56:24.48 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-03-12T01:56:24.477Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.28.0.3:50308", "grpc.code": "OK", "grpc.call_duration": "3.3212ms"} +peer1.org1.example.com | [036 03-12 01:56:27.09 UTC] [%{longpkg}] %{callpath} -> INFO Membership view has changed. peers went online: [[peer0.org1.example.com:7051]] , current view: [[peer0.org1.example.com:7051]] +peer1.org1.example.com | [037 03-12 01:56:27.88 UTC] [%{longpkg}] %{callpath} -> INFO 0be1e243940145f5e3af2c865fe319e551a303f3013dd34afa09d7f05c0653ca : Some peer is already a leader +peer1.org1.example.com | [038 03-12 01:56:27.91 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Received block [1] from buffer +peer1.org1.example.com | [039 03-12 01:56:27.94 UTC] [%{longpkg}] %{callpath} -> INFO Joining gossip network of channel businesschannel with 2 organizations +peer1.org1.example.com | [03a 03-12 01:56:27.94 UTC] [%{longpkg}] %{callpath} -> INFO No configured anchor peers of Org2MSP for channel businesschannel to learn about +peer1.org1.example.com | [03b 03-12 01:56:27.94 UTC] [%{longpkg}] %{callpath} -> INFO Learning about the configured anchor peers of Org1MSP for channel businesschannel : [{peer0.org1.example.com 7051}] +peer1.org1.example.com | [03c 03-12 01:56:27.95 UTC] [%{longpkg}] %{callpath} -> WARN Failed to update ordering service endpoints, due to Channel with businesschannel id was not found +peer1.org1.example.com | [03d 03-12 01:56:27.97 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Validated block [1] in 54ms +peer1.org1.example.com | [03e 03-12 01:56:27.99 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Committed block [1] with 1 transaction(s) in 24ms (state_validation=0ms block_commit=11ms state_commit=8ms) +peer1.org1.example.com | [03f 03-12 01:56:27.99 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Received block [2] from buffer +peer1.org1.example.com | [040 03-12 01:56:28.02 UTC] [%{longpkg}] %{callpath} -> INFO Joining gossip network of channel businesschannel with 2 organizations +peer1.org1.example.com | [041 03-12 01:56:28.02 UTC] [%{longpkg}] %{callpath} -> INFO Learning about the configured anchor peers of Org2MSP for channel businesschannel : [{peer0.org2.example.com 7051}] +peer1.org1.example.com | [042 03-12 01:56:28.02 UTC] [%{longpkg}] %{callpath} -> INFO Learning about the configured anchor peers of Org1MSP for channel businesschannel : [{peer0.org1.example.com 7051}] +peer1.org1.example.com | [043 03-12 01:56:28.02 UTC] [%{longpkg}] %{callpath} -> WARN Failed to update ordering service endpoints, due to Channel with businesschannel id was not found +peer1.org1.example.com | [044 03-12 01:56:28.04 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Validated block [2] in 40ms +peer1.org1.example.com | [045 03-12 01:56:28.06 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Committed block [2] with 1 transaction(s) in 21ms (state_validation=7ms block_commit=8ms state_commit=3ms) +peer1.org1.example.com | [046 03-12 01:56:28.08 UTC] [%{longpkg}] %{callpath} -> WARN peer0.org1.example.com:7051, PKIid:3d21b0bc142d8ddae3c27797c0c2bf16b05e0414b227484fdbfabf9859231106 isn't responsive: EOF +peer1.org1.example.com | [047 03-12 01:56:28.08 UTC] [%{longpkg}] %{callpath} -> WARN Entering [3d21b0bc142d8ddae3c27797c0c2bf16b05e0414b227484fdbfabf9859231106] +peer1.org1.example.com | [048 03-12 01:56:28.08 UTC] [%{longpkg}] %{callpath} -> WARN Closing connection to Endpoint: peer0.org1.example.com:7051, InternalEndpoint: peer0.org1.example.com:7051, PKI-ID: 3d21b0bc142d8ddae3c27797c0c2bf16b05e0414b227484fdbfabf9859231106, Metadata: +peer1.org1.example.com | [049 03-12 01:56:28.08 UTC] [%{longpkg}] %{callpath} -> WARN Exiting +peer1.org1.example.com | [04a 03-12 01:56:30.61 UTC] [%{longpkg}] %{callpath} -> WARN StateInfo message GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"T\007\035\226\017\365\020\207\245V/\336H\001\337\251\004\3064\306\303\303\215\240\331\202\240\261\366/\n'" channel_MAC:"\362g\"\031\241p\023\254k\244\253\331jD\n\254\007\274\312\223\364\366%S(\352p\037\265\320\221\233" properties: > , Envelope: 98 bytes, Signature: 70 bytes is found invalid: PKIID wasn't found +peer1.org1.example.com | [04b 03-12 01:56:30.61 UTC] [%{longpkg}] %{callpath} -> WARN Message GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"T\007\035\226\017\365\020\207\245V/\336H\001\337\251\004\3064\306\303\303\215\240\331\202\240\261\366/\n'" channel_MAC:"\362g\"\031\241p\023\254k\244\253\331jD\n\254\007\274\312\223\364\366%S(\352p\037\265\320\221\233" properties: > , Envelope: 98 bytes, Signature: 70 bytes isn't valid +peer1.org1.example.com | [04c 03-12 01:56:31.53 UTC] [%{longpkg}] %{callpath} -> INFO [][eddd3514] Entry chaincode: name:"lscc" +peer1.org1.example.com | [04d 03-12 01:56:31.53 UTC] [%{longpkg}] %{callpath} -> INFO Installed Chaincode [exp02] Version [1.0] to peer +peer1.org1.example.com | [04e 03-12 01:56:31.53 UTC] [%{longpkg}] %{callpath} -> INFO [][eddd3514] Exit chaincode: name:"lscc" (3ms) +peer1.org1.example.com | [04f 03-12 01:56:31.53 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-03-12T01:56:31.53Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.28.0.3:50378", "grpc.code": "OK", "grpc.call_duration": "4.265ms"} +peer1.org1.example.com | [050 03-12 01:56:32.09 UTC] [%{longpkg}] %{callpath} -> INFO Membership view has changed. peers went online: [[peer0.org2.example.com:7051 ]] , current view: [[peer0.org1.example.com:7051] [peer0.org2.example.com:7051 ]] +peer1.org1.example.com | [051 03-12 01:56:33.10 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-03-12T01:56:33.108Z", "grpc.service": "gossip.Gossip", "grpc.method": "Ping", "grpc.request_deadline": "2019-03-12T01:56:35.108Z", "grpc.peer_address": "172.28.0.4:36508", "grpc.peer_subject": "CN=peer1.org2.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "183.2µs"} +peer1.org1.example.com | [052 03-12 01:56:42.09 UTC] [%{longpkg}] %{callpath} -> INFO Membership view has changed. peers went online: [[peer1.org2.example.com:7051 ]] , current view: [[peer0.org1.example.com:7051] [peer0.org2.example.com:7051 ] [peer1.org2.example.com:7051 ]] +peer1.org1.example.com | [053 03-12 01:57:13.26 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Received block [3] from buffer +peer1.org1.example.com | [054 03-12 01:57:13.27 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Validated block [3] in 15ms +peer1.org1.example.com | [055 03-12 01:57:13.28 UTC] [%{longpkg}] %{callpath} -> INFO Channel [businesschannel]: Handling deploy or update of chaincode [exp02] +peer1.org1.example.com | [056 03-12 01:57:13.30 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Committed block [3] with 1 transaction(s) in 24ms (state_validation=3ms block_commit=14ms state_commit=3ms) +peer1.org1.example.com | [057 03-12 01:57:50.87 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Received block [4] from buffer +peer1.org1.example.com | [058 03-12 01:57:50.87 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Validated block [4] in 1ms +peer1.org1.example.com | [059 03-12 01:57:50.90 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Committed block [4] with 1 transaction(s) in 29ms (state_validation=7ms block_commit=17ms state_commit=2ms) +peer1.org1.example.com | [05a 03-12 01:57:53.45 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Received block [5] from buffer +peer1.org1.example.com | [05b 03-12 01:57:53.45 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Validated block [5] in 2ms +peer1.org1.example.com | [05c 03-12 01:57:53.47 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Committed block [5] with 1 transaction(s) in 15ms (state_validation=0ms block_commit=9ms state_commit=2ms) +peer1.org1.example.com | [05d 03-12 01:58:05.17 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Received block [6] from buffer +peer1.org1.example.com | [05e 03-12 01:58:05.17 UTC] [%{longpkg}] %{callpath} -> WARN De-duplicating identity [Org1MSP0270edfed53a78d7d3c66dc25737f57f956e48ef69dca5ecc91c26679dd4eff3] at index 2 in signature set +peer1.org1.example.com | [05f 03-12 01:58:05.18 UTC] [%{longpkg}] %{callpath} -> WARN De-duplicating identity [Org1MSP0270edfed53a78d7d3c66dc25737f57f956e48ef69dca5ecc91c26679dd4eff3] at index 2 in signature set +peer1.org1.example.com | [060 03-12 01:58:05.24 UTC] [%{longpkg}] %{callpath} -> INFO Joining gossip network of channel businesschannel with 3 organizations +peer1.org1.example.com | [061 03-12 01:58:05.24 UTC] [%{longpkg}] %{callpath} -> INFO No configured anchor peers of Org3MSP for channel businesschannel to learn about +peer1.org1.example.com | [062 03-12 01:58:05.24 UTC] [%{longpkg}] %{callpath} -> INFO Learning about the configured anchor peers of Org1MSP for channel businesschannel : [{peer0.org1.example.com 7051}] +peer1.org1.example.com | [063 03-12 01:58:05.24 UTC] [%{longpkg}] %{callpath} -> INFO Learning about the configured anchor peers of Org2MSP for channel businesschannel : [{peer0.org2.example.com 7051}] +peer1.org1.example.com | [064 03-12 01:58:05.24 UTC] [%{longpkg}] %{callpath} -> WARN Failed to update ordering service endpoints, due to Channel with businesschannel id was not found +peer1.org1.example.com | [065 03-12 01:58:05.29 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Validated block [6] in 117ms +peer1.org1.example.com | [066 03-12 01:58:05.33 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Committed block [6] with 1 transaction(s) in 35ms (state_validation=5ms block_commit=22ms state_commit=4ms) +peer1.org1.example.com | [067 03-12 01:58:05.76 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-03-12T01:58:05.763Z", "grpc.service": "gossip.Gossip", "grpc.method": "Ping", "grpc.request_deadline": "2019-03-12T01:58:07.762Z", "grpc.peer_address": "172.28.0.7:39256", "grpc.peer_subject": "CN=peer0.org1.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "173µs"} +peer1.org1.example.com | [068 03-12 01:58:05.80 UTC] [%{longpkg}] %{callpath} -> WARN peer0.org2.example.com:7051, PKIid:75b2768046f1cff79a75d29027b3162b4c2d489ed2c22c48403d0760a7c0a76b isn't responsive: EOF +peer1.org1.example.com | [069 03-12 01:58:05.80 UTC] [%{longpkg}] %{callpath} -> WARN Entering [75b2768046f1cff79a75d29027b3162b4c2d489ed2c22c48403d0760a7c0a76b] +peer1.org1.example.com | [06a 03-12 01:58:05.80 UTC] [%{longpkg}] %{callpath} -> WARN Closing connection to Endpoint: peer0.org2.example.com:7051, InternalEndpoint: , PKI-ID: 75b2768046f1cff79a75d29027b3162b4c2d489ed2c22c48403d0760a7c0a76b, Metadata: +peer1.org1.example.com | [06b 03-12 01:58:05.80 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-03-12T01:58:05.809Z", "grpc.service": "gossip.Gossip", "grpc.method": "Ping", "grpc.request_deadline": "2019-03-12T01:58:07.808Z", "grpc.peer_address": "172.28.0.6:37310", "grpc.peer_subject": "CN=peer0.org2.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "359µs"} +peer1.org1.example.com | [06c 03-12 01:58:05.81 UTC] [%{longpkg}] %{callpath} -> WARN Exiting +peer1.org1.example.com | [06d 03-12 01:58:06.99 UTC] [%{longpkg}] %{callpath} -> INFO Membership view has changed. peers went offline: [[peer0.org2.example.com:7051 ]] , current view: [[peer0.org1.example.com:7051] [peer1.org2.example.com:7051 ]] +peer1.org1.example.com | [06e 03-12 01:58:12.00 UTC] [%{longpkg}] %{callpath} -> INFO Membership view has changed. peers went online: [[peer0.org2.example.com:7051 ]] , current view: [[peer1.org2.example.com:7051 ] [peer0.org1.example.com:7051] [peer0.org2.example.com:7051 ]] +peer1.org1.example.com | [06f 03-12 01:58:15.21 UTC] [%{longpkg}] %{callpath} -> INFO [][918ba70a] Entry chaincode: name:"cscc" +peer1.org1.example.com | [070 03-12 01:58:15.21 UTC] [%{longpkg}] %{callpath} -> INFO [][918ba70a] Exit chaincode: name:"cscc" (1ms) +peer1.org1.example.com | [071 03-12 01:58:15.21 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-03-12T01:58:15.216Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.28.0.3:50636", "grpc.code": "OK", "grpc.call_duration": "2.2008ms"} +peer1.org1.example.com | [072 03-12 01:58:16.04 UTC] [%{longpkg}] %{callpath} -> INFO [][abfe51c2] Entry chaincode: name:"qscc" +peer1.org1.example.com | [073 03-12 01:58:16.05 UTC] [%{longpkg}] %{callpath} -> INFO [][abfe51c2] Exit chaincode: name:"qscc" (3ms) +peer1.org1.example.com | [074 03-12 01:58:16.05 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-03-12T01:58:16.048Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.28.0.3:50644", "grpc.code": "OK", "grpc.call_duration": "4.5171ms"} +orderer0.example.com | 2019-03-12 01:56:08.983 UTC [localconfig] completeInitialization -> INFO 001 Kafka.Version unset, setting to 0.10.2.0 +orderer0.example.com | [002 03-12 01:56:09.06 UTC] [%{longpkg}] %{callpath} -> INFO Orderer config values: +orderer0.example.com | General.LedgerType = "file" +orderer0.example.com | General.ListenAddress = "0.0.0.0" +orderer0.example.com | General.ListenPort = 7050 +orderer0.example.com | General.TLS.Enabled = true +orderer0.example.com | General.TLS.PrivateKey = "/var/hyperledger/orderer/tls/server.key" +orderer0.example.com | General.TLS.Certificate = "/var/hyperledger/orderer/tls/server.crt" +orderer0.example.com | General.TLS.RootCAs = [/var/hyperledger/orderer/tls/ca.crt] +orderer0.example.com | General.TLS.ClientAuthRequired = false +orderer0.example.com | General.TLS.ClientRootCAs = [] +orderer0.example.com | General.Cluster.RootCAs = [/etc/hyperledger/fabric/tls/ca.crt] +orderer0.example.com | General.Cluster.ClientCertificate = "" +orderer0.example.com | General.Cluster.ClientPrivateKey = "" +orderer0.example.com | General.Cluster.DialTimeout = 5s +orderer0.example.com | General.Cluster.RPCTimeout = 7s +orderer0.example.com | General.Cluster.ReplicationBufferSize = 20971520 +orderer0.example.com | General.Cluster.ReplicationPullTimeout = 5s +orderer0.example.com | General.Cluster.ReplicationRetryTimeout = 5s +orderer0.example.com | General.Keepalive.ServerMinInterval = 1m0s +orderer0.example.com | General.Keepalive.ServerInterval = 2h0m0s +orderer0.example.com | General.Keepalive.ServerTimeout = 20s +orderer0.example.com | General.GenesisMethod = "file" +orderer0.example.com | General.GenesisProfile = "SampleInsecureSolo" +orderer0.example.com | General.SystemChannel = "test-system-channel-name" +orderer0.example.com | General.GenesisFile = "/var/hyperledger/orderer/orderer.genesis.block" +orderer0.example.com | General.Profile.Enabled = false +orderer0.example.com | General.Profile.Address = "0.0.0.0:6060" +orderer0.example.com | General.LocalMSPDir = "/var/hyperledger/orderer/msp" +orderer0.example.com | General.LocalMSPID = "OrdererMSP" +orderer0.example.com | General.BCCSP.ProviderName = "SW" +orderer0.example.com | General.BCCSP.SwOpts.SecLevel = 256 +orderer0.example.com | General.BCCSP.SwOpts.HashFamily = "SHA2" +orderer0.example.com | General.BCCSP.SwOpts.Ephemeral = false +orderer0.example.com | General.BCCSP.SwOpts.FileKeystore.KeyStorePath = "/var/hyperledger/orderer/msp/keystore" +orderer0.example.com | General.BCCSP.SwOpts.DummyKeystore = +orderer0.example.com | General.BCCSP.SwOpts.InmemKeystore = +orderer0.example.com | General.BCCSP.PluginOpts = +orderer0.example.com | General.Authentication.TimeWindow = 15m0s +orderer0.example.com | FileLedger.Location = "/var/hyperledger/production/orderer" +orderer0.example.com | FileLedger.Prefix = "hyperledger-fabric-ordererledger" +orderer0.example.com | RAMLedger.HistorySize = 1000 +orderer0.example.com | Kafka.Retry.ShortInterval = 5s +orderer0.example.com | Kafka.Retry.ShortTotal = 10m0s +orderer0.example.com | Kafka.Retry.LongInterval = 5m0s +orderer0.example.com | Kafka.Retry.LongTotal = 12h0m0s +orderer0.example.com | Kafka.Retry.NetworkTimeouts.DialTimeout = 10s +orderer0.example.com | Kafka.Retry.NetworkTimeouts.ReadTimeout = 10s +orderer0.example.com | Kafka.Retry.NetworkTimeouts.WriteTimeout = 10s +orderer0.example.com | Kafka.Retry.Metadata.RetryMax = 3 +orderer0.example.com | Kafka.Retry.Metadata.RetryBackoff = 250ms +orderer0.example.com | Kafka.Retry.Producer.RetryMax = 3 +orderer0.example.com | Kafka.Retry.Producer.RetryBackoff = 100ms +orderer0.example.com | Kafka.Retry.Consumer.RetryBackoff = 2s +orderer0.example.com | Kafka.Verbose = false +orderer0.example.com | Kafka.Version = 0.10.2.0 +orderer0.example.com | Kafka.TLS.Enabled = false +orderer0.example.com | Kafka.TLS.PrivateKey = "" +orderer0.example.com | Kafka.TLS.Certificate = "" +orderer0.example.com | Kafka.TLS.RootCAs = [] +orderer0.example.com | Kafka.TLS.ClientAuthRequired = false +orderer0.example.com | Kafka.TLS.ClientRootCAs = [] +orderer0.example.com | Kafka.SASLPlain.Enabled = false +orderer0.example.com | Kafka.SASLPlain.User = "" +orderer0.example.com | Kafka.SASLPlain.Password = "" +orderer0.example.com | Kafka.Topic.ReplicationFactor = 3 +orderer0.example.com | Debug.BroadcastTraceDir = "" +orderer0.example.com | Debug.DeliverTraceDir = "" +orderer0.example.com | Consensus = map[SnapDir:/var/hyperledger/production/orderer/etcdraft/snapshot WALDir:/var/hyperledger/production/orderer/etcdraft/wal] +orderer0.example.com | Operations.ListenAddress = "0.0.0.0:8443" +orderer0.example.com | Operations.TLS.Enabled = false +orderer0.example.com | Operations.TLS.PrivateKey = "" +orderer0.example.com | Operations.TLS.Certificate = "" +orderer0.example.com | Operations.TLS.RootCAs = [] +orderer0.example.com | Operations.TLS.ClientAuthRequired = false +orderer0.example.com | Operations.TLS.ClientRootCAs = [] +orderer0.example.com | Metrics.Provider = "prometheus" +orderer0.example.com | Metrics.Statsd.Network = "udp" +orderer0.example.com | Metrics.Statsd.Address = "127.0.0.1:8125" +orderer0.example.com | Metrics.Statsd.WriteInterval = 30s +orderer0.example.com | Metrics.Statsd.Prefix = "" +orderer0.example.com | [003 03-12 01:56:09.12 UTC] [%{longpkg}] %{callpath} -> INFO Starting orderer with TLS enabled +orderer0.example.com | [004 03-12 01:56:09.13 UTC] [%{longpkg}] %{callpath} -> INFO Getting block information from block storage +orderer0.example.com | [005 03-12 01:56:09.15 UTC] [%{longpkg}] %{callpath} -> INFO Starting system channel 'testchainid' with genesis block hash cde6efa82d0288cf91294accd919b39e2e13c658393e2d2d62d545b9d2dd5999 and orderer type solo +orderer0.example.com | [006 03-12 01:56:09.15 UTC] [%{longpkg}] %{callpath} -> INFO Starting orderer: +orderer0.example.com | Version: 1.4.0 +orderer0.example.com | Commit SHA: development build +orderer0.example.com | Go version: go1.11.4 +orderer0.example.com | OS/Arch: linux/amd64 +orderer0.example.com | [007 03-12 01:56:09.15 UTC] [%{longpkg}] %{callpath} -> INFO Beginning to serve requests +orderer0.example.com | [008 03-12 01:56:21.09 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-03-12T01:56:21.033Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.28.0.3:53160", "grpc.code": "OK", "grpc.call_duration": "62.1764ms"} +orderer0.example.com | [009 03-12 01:56:21.09 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-03-12T01:56:21.048Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Broadcast", "grpc.peer_address": "172.28.0.3:53162", "grpc.code": "OK", "grpc.call_duration": "47.2839ms"} +orderer0.example.com | [00a 03-12 01:56:21.11 UTC] [%{longpkg}] %{callpath} -> INFO Getting block information from block storage +orderer0.example.com | [00b 03-12 01:56:21.12 UTC] [%{longpkg}] %{callpath} -> INFO Created and starting new chain businesschannel +orderer0.example.com | [00c 03-12 01:56:21.33 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.28.0.3:53164: rpc error: code = Canceled desc = context canceled +orderer0.example.com | [00d 03-12 01:56:21.33 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-03-12T01:56:21.11Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.28.0.3:53164", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "220.4093ms"} +orderer0.example.com | [00e 03-12 01:56:25.37 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.28.0.3:53194: rpc error: code = Canceled desc = context canceled +orderer0.example.com | [00f 03-12 01:56:25.37 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-03-12T01:56:25.328Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Broadcast", "grpc.peer_address": "172.28.0.3:53194", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "44.8342ms"} +orderer0.example.com | [010 03-12 01:56:25.37 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.28.0.3:53192: rpc error: code = Canceled desc = context canceled +orderer0.example.com | [011 03-12 01:56:25.37 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-03-12T01:56:25.313Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.28.0.3:53192", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "60.2145ms"} +orderer0.example.com | [012 03-12 01:56:27.58 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.28.0.3:53198: rpc error: code = Canceled desc = context canceled +orderer0.example.com | [013 03-12 01:56:27.58 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-03-12T01:56:27.536Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.28.0.3:53198", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "46.339ms"} +orderer0.example.com | [014 03-12 01:56:27.58 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.28.0.3:53200: rpc error: code = Canceled desc = context canceled +orderer0.example.com | [015 03-12 01:56:27.58 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-03-12T01:56:27.55Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Broadcast", "grpc.peer_address": "172.28.0.3:53200", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "34.0862ms"} +orderer0.example.com | [016 03-12 01:56:33.41 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-03-12T01:56:28.405Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.28.0.6:55746", "grpc.peer_subject": "CN=peer0.org2.example.com,L=San Francisco,ST=California,C=US", "error": "context finished before block retrieved: context canceled", "grpc.code": "Unknown", "grpc.call_duration": "5.0081278s"} +orderer0.example.com | [017 03-12 01:57:11.24 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.28.0.3:53278: rpc error: code = Canceled desc = context canceled +orderer0.example.com | [018 03-12 01:57:11.24 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-03-12T01:56:33.637Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Broadcast", "grpc.peer_address": "172.28.0.3:53278", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "37.6402379s"} +orderer0.example.com | [019 03-12 01:57:48.89 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.28.0.3:53350: rpc error: code = Canceled desc = context canceled +orderer0.example.com | [01a 03-12 01:57:48.89 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-03-12T01:57:48.877Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Broadcast", "grpc.peer_address": "172.28.0.3:53350", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "16.0975ms"} +orderer0.example.com | [01b 03-12 01:57:51.41 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.28.0.3:53364: rpc error: code = Canceled desc = context canceled +orderer0.example.com | [01c 03-12 01:57:51.41 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-03-12T01:57:51.38Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Broadcast", "grpc.peer_address": "172.28.0.3:53364", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "30.5863ms"} +orderer0.example.com | [01d 03-12 01:57:56.69 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.28.0.3:53418: rpc error: code = Canceled desc = context canceled +orderer0.example.com | [01e 03-12 01:57:56.69 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-03-12T01:57:56.683Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.28.0.3:53418", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "9.6687ms"} +orderer0.example.com | [01f 03-12 01:57:56.92 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.28.0.3:53420: rpc error: code = Canceled desc = context canceled +orderer0.example.com | [020 03-12 01:57:56.92 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-03-12T01:57:56.914Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.28.0.3:53420", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "14.3459ms"} +orderer0.example.com | [021 03-12 01:57:57.08 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.28.0.3:53422: rpc error: code = Canceled desc = context canceled +orderer0.example.com | [022 03-12 01:57:57.08 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-03-12T01:57:57.078Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.28.0.3:53422", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "10.3056ms"} +orderer0.example.com | [023 03-12 01:57:57.29 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.28.0.3:53424: rpc error: code = Canceled desc = context canceled +orderer0.example.com | [024 03-12 01:57:57.29 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-03-12T01:57:57.286Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.28.0.3:53424", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "13.7532ms"} +orderer0.example.com | [025 03-12 01:57:57.46 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.28.0.3:53426: rpc error: code = Canceled desc = context canceled +orderer0.example.com | [026 03-12 01:57:57.46 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-03-12T01:57:57.454Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.28.0.3:53426", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "11.6993ms"} +orderer0.example.com | [027 03-12 01:57:57.63 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.28.0.3:53428: rpc error: code = Canceled desc = context canceled +orderer0.example.com | [028 03-12 01:57:57.63 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-03-12T01:57:57.623Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.28.0.3:53428", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "9.5881ms"} +orderer0.example.com | [029 03-12 01:57:57.81 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.28.0.3:53430: rpc error: code = Canceled desc = context canceled +orderer0.example.com | [02a 03-12 01:57:57.82 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-03-12T01:57:57.809Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.28.0.3:53430", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "10.5344ms"} +orderer0.example.com | [02b 03-12 01:57:58.03 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.28.0.3:53432: rpc error: code = Canceled desc = context canceled +orderer0.example.com | [02c 03-12 01:57:58.03 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-03-12T01:57:58.027Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.28.0.3:53432", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "10.0359ms"} +orderer0.example.com | [02d 03-12 01:57:58.20 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.28.0.3:53434: rpc error: code = Canceled desc = context canceled +orderer0.example.com | [02e 03-12 01:57:58.20 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-03-12T01:57:58.196Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.28.0.3:53434", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "7.6203ms"} +orderer0.example.com | [02f 03-12 01:57:58.39 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.28.0.3:53436: rpc error: code = Canceled desc = context canceled +orderer0.example.com | [030 03-12 01:57:58.39 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-03-12T01:57:58.378Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.28.0.3:53436", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "15.7117ms"} +orderer0.example.com | [031 03-12 01:57:58.53 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.28.0.3:53438: rpc error: code = Canceled desc = context canceled +orderer0.example.com | [032 03-12 01:57:58.53 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-03-12T01:57:58.527Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.28.0.3:53438", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "8.8293ms"} +orderer0.example.com | [033 03-12 01:57:58.71 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.28.0.3:53440: rpc error: code = Canceled desc = context canceled +orderer0.example.com | [034 03-12 01:57:58.71 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-03-12T01:57:58.703Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.28.0.3:53440", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "14.1157ms"} +orderer0.example.com | [035 03-12 01:58:05.09 UTC] [%{longpkg}] %{callpath} -> WARN De-duplicating identity [Org1MSP0270edfed53a78d7d3c66dc25737f57f956e48ef69dca5ecc91c26679dd4eff3] at index 2 in signature set +orderer0.example.com | [036 03-12 01:58:05.09 UTC] [%{longpkg}] %{callpath} -> WARN De-duplicating identity [Org1MSP0270edfed53a78d7d3c66dc25737f57f956e48ef69dca5ecc91c26679dd4eff3] at index 2 in signature set +orderer0.example.com | [037 03-12 01:58:05.11 UTC] [%{longpkg}] %{callpath} -> WARN De-duplicating identity [Org1MSP0270edfed53a78d7d3c66dc25737f57f956e48ef69dca5ecc91c26679dd4eff3] at index 2 in signature set +orderer0.example.com | [038 03-12 01:58:05.11 UTC] [%{longpkg}] %{callpath} -> WARN De-duplicating identity [Org1MSP0270edfed53a78d7d3c66dc25737f57f956e48ef69dca5ecc91c26679dd4eff3] at index 2 in signature set +orderer0.example.com | [039 03-12 01:58:05.13 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.28.0.3:53448: rpc error: code = Canceled desc = context canceled +orderer0.example.com | [03b 03-12 01:58:05.13 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-03-12T01:58:05.075Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.28.0.3:53448", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "63.377ms"} +orderer0.example.com | [03a 03-12 01:58:05.13 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.28.0.3:53450: rpc error: code = Canceled desc = context canceled +orderer0.example.com | [03c 03-12 01:58:05.13 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-03-12T01:58:05.089Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Broadcast", "grpc.peer_address": "172.28.0.3:53450", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "50.2963ms"} +orderer0.example.com | [03d 03-12 01:58:07.28 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.28.0.3:53476: rpc error: code = Canceled desc = context canceled +orderer0.example.com | [03e 03-12 01:58:07.28 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-03-12T01:58:07.274Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.28.0.3:53476", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "10.634ms"} +orderer0.example.com | [03f 03-12 01:58:07.41 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.28.0.3:53478: rpc error: code = Canceled desc = context canceled +orderer0.example.com | [040 03-12 01:58:07.41 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-03-12T01:58:07.409Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.28.0.3:53478", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "8.8805ms"} +orderer0.example.com | [041 03-12 01:58:07.92 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.28.0.3:53480: rpc error: code = Canceled desc = context canceled +orderer0.example.com | [042 03-12 01:58:07.92 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-03-12T01:58:07.916Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.28.0.3:53480", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "8.4446ms"} +orderer0.example.com | [043 03-12 01:58:08.10 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.28.0.3:53482: rpc error: code = Canceled desc = context canceled +orderer0.example.com | [044 03-12 01:58:08.10 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-03-12T01:58:08.088Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.28.0.3:53482", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "18.47ms"} +orderer0.example.com | [045 03-12 01:58:08.24 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.28.0.3:53484: rpc error: code = Canceled desc = context canceled +orderer0.example.com | [046 03-12 01:58:08.24 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-03-12T01:58:08.229Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.28.0.3:53484", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "11.8529ms"} +orderer0.example.com | [047 03-12 01:58:08.40 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.28.0.3:53486: rpc error: code = Canceled desc = context canceled +orderer0.example.com | [048 03-12 01:58:08.40 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-03-12T01:58:08.4Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.28.0.3:53486", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "9.2073ms"} +orderer0.example.com | [049 03-12 01:58:08.57 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.28.0.3:53488: rpc error: code = Canceled desc = context canceled +orderer0.example.com | [04a 03-12 01:58:08.57 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-03-12T01:58:08.561Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.28.0.3:53488", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "11.9281ms"} +orderer0.example.com | [04b 03-12 01:58:08.72 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.28.0.3:53490: rpc error: code = Canceled desc = context canceled +orderer0.example.com | [04c 03-12 01:58:08.73 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-03-12T01:58:08.721Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.28.0.3:53490", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "9.3499ms"} +orderer0.example.com | [04d 03-12 01:58:08.90 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.28.0.3:53492: rpc error: code = Canceled desc = context canceled +orderer0.example.com | [04e 03-12 01:58:08.91 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-03-12T01:58:08.899Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.28.0.3:53492", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "10.6356ms"} +orderer0.example.com | [04f 03-12 01:58:09.10 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.28.0.3:53494: rpc error: code = Canceled desc = context canceled +orderer0.example.com | [050 03-12 01:58:09.10 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-03-12T01:58:09.096Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.28.0.3:53494", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "11.6882ms"} +orderer0.example.com | [051 03-12 01:58:10.33 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.28.0.3:53498: rpc error: code = Canceled desc = context canceled +orderer0.example.com | [052 03-12 01:58:10.33 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-03-12T01:58:10.32Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.28.0.3:53498", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "13.0151ms"} +orderer0.example.com | [053 03-12 01:58:10.50 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.28.0.3:53500: rpc error: code = Canceled desc = context canceled +orderer0.example.com | [054 03-12 01:58:10.50 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-03-12T01:58:10.498Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.28.0.3:53500", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "10.0335ms"} +orderer0.example.com | [055 03-12 01:58:10.68 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.28.0.3:53502: rpc error: code = Canceled desc = context canceled +orderer0.example.com | [056 03-12 01:58:10.68 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-03-12T01:58:10.671Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.28.0.3:53502", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "11.3708ms"} +orderer0.example.com | [057 03-12 01:58:10.81 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.28.0.3:53504: rpc error: code = Canceled desc = context canceled +orderer0.example.com | [058 03-12 01:58:10.81 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-03-12T01:58:10.807Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.28.0.3:53504", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "8.864ms"} +orderer0.example.com | [059 03-12 01:58:10.98 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.28.0.3:53508: rpc error: code = Canceled desc = context canceled +orderer0.example.com | [05a 03-12 01:58:10.98 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-03-12T01:58:10.975Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.28.0.3:53508", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "10.4767ms"} diff --git a/hyperledger_fabric/v1.4.0/solo/logs/dev_orderer.log b/hyperledger_fabric/v1.4.0/solo/logs/dev_orderer.log index 3490d0e5..1b09ad3c 100644 --- a/hyperledger_fabric/v1.4.0/solo/logs/dev_orderer.log +++ b/hyperledger_fabric/v1.4.0/solo/logs/dev_orderer.log @@ -1,5 +1,5 @@ -2019-01-09 08:56:39.480 UTC [localconfig] completeInitialization -> INFO 001 Kafka.Version unset, setting to 0.10.2.0 -[002 01-09 08:56:39.56 UTC] [%{longpkg}] %{callpath} -> INFO Orderer config values: +2019-03-12 01:56:08.983 UTC [localconfig] completeInitialization -> INFO 001 Kafka.Version unset, setting to 0.10.2.0 +[002 03-12 01:56:09.06 UTC] [%{longpkg}] %{callpath} -> INFO Orderer config values: General.LedgerType = "file" General.ListenAddress = "0.0.0.0" General.ListenPort = 7050 @@ -66,7 +66,7 @@ Kafka.Topic.ReplicationFactor = 3 Debug.BroadcastTraceDir = "" Debug.DeliverTraceDir = "" - Consensus = map[WALDir:/var/hyperledger/production/orderer/etcdraft/wal SnapDir:/var/hyperledger/production/orderer/etcdraft/snapshot] + Consensus = map[SnapDir:/var/hyperledger/production/orderer/etcdraft/snapshot WALDir:/var/hyperledger/production/orderer/etcdraft/wal] Operations.ListenAddress = "0.0.0.0:8443" Operations.TLS.Enabled = false Operations.TLS.PrivateKey = "" @@ -79,93 +79,95 @@ Metrics.Statsd.Address = "127.0.0.1:8125" Metrics.Statsd.WriteInterval = 30s Metrics.Statsd.Prefix = "" -[003 01-09 08:56:39.62 UTC] [%{longpkg}] %{callpath} -> INFO Starting orderer with TLS enabled -[004 01-09 08:56:39.62 UTC] [%{longpkg}] %{callpath} -> INFO Getting block information from block storage -[005 01-09 08:56:39.64 UTC] [%{longpkg}] %{callpath} -> INFO Starting system channel 'testchainid' with genesis block hash cde6efa82d0288cf91294accd919b39e2e13c658393e2d2d62d545b9d2dd5999 and orderer type solo -[006 01-09 08:56:39.64 UTC] [%{longpkg}] %{callpath} -> INFO Starting orderer: - Version: 1.4.0-rc1 +[003 03-12 01:56:09.12 UTC] [%{longpkg}] %{callpath} -> INFO Starting orderer with TLS enabled +[004 03-12 01:56:09.13 UTC] [%{longpkg}] %{callpath} -> INFO Getting block information from block storage +[005 03-12 01:56:09.15 UTC] [%{longpkg}] %{callpath} -> INFO Starting system channel 'testchainid' with genesis block hash cde6efa82d0288cf91294accd919b39e2e13c658393e2d2d62d545b9d2dd5999 and orderer type solo +[006 03-12 01:56:09.15 UTC] [%{longpkg}] %{callpath} -> INFO Starting orderer: + Version: 1.4.0 Commit SHA: development build - Go version: go1.11.2 + Go version: go1.11.4 OS/Arch: linux/amd64 -[007 01-09 08:56:39.64 UTC] [%{longpkg}] %{callpath} -> INFO Beginning to serve requests -[008 01-09 08:56:51.56 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T08:56:51.529Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Broadcast", "grpc.peer_address": "172.24.0.8:33084", "grpc.code": "OK", "grpc.call_duration": "33.6809ms"} -[009 01-09 08:56:51.56 UTC] [%{longpkg}] %{callpath} -> INFO Getting block information from block storage -[00a 01-09 08:56:51.57 UTC] [%{longpkg}] %{callpath} -> INFO Created and starting new chain businesschannel -[00b 01-09 08:56:51.59 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.24.0.8:33082: rpc error: code = Canceled desc = context canceled -[00c 01-09 08:56:51.59 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T08:56:51.516Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.24.0.8:33082", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "82.4385ms"} -[00d 01-09 08:56:55.56 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.24.0.8:33112: rpc error: code = Canceled desc = context canceled -[00e 01-09 08:56:55.56 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T08:56:55.508Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.24.0.8:33112", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "57.5842ms"} -[00f 01-09 08:56:55.56 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.24.0.8:33114: rpc error: code = Canceled desc = context canceled -[010 01-09 08:56:55.56 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T08:56:55.524Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Broadcast", "grpc.peer_address": "172.24.0.8:33114", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "41.9631ms"} -[011 01-09 08:56:57.83 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.24.0.8:33118: rpc error: code = Canceled desc = context canceled -[012 01-09 08:56:57.83 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T08:56:57.771Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.24.0.8:33118", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "63.7111ms"} -[013 01-09 08:56:57.83 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.24.0.8:33120: rpc error: code = Canceled desc = context canceled -[014 01-09 08:56:57.83 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T08:56:57.792Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Broadcast", "grpc.peer_address": "172.24.0.8:33120", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "43.507ms"} -[015 01-09 08:57:42.43 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.24.0.8:33184: rpc error: code = Canceled desc = context canceled -[016 01-09 08:57:42.43 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T08:57:06.16Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Broadcast", "grpc.peer_address": "172.24.0.8:33184", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "36.3107475s"} -[017 01-09 08:58:19.56 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.24.0.8:33252: rpc error: code = Canceled desc = context canceled -[018 01-09 08:58:19.56 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T08:58:19.532Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Broadcast", "grpc.peer_address": "172.24.0.8:33252", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "28.1573ms"} -[019 01-09 08:58:22.15 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.24.0.8:33266: rpc error: code = Canceled desc = context canceled -[01a 01-09 08:58:22.15 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T08:58:22.137Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Broadcast", "grpc.peer_address": "172.24.0.8:33266", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "17.551ms"} -[01b 01-09 08:58:29.37 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.24.0.8:33320: rpc error: code = Canceled desc = context canceled -[01c 01-09 08:58:29.37 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T08:58:29.37Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.24.0.8:33320", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "7.2877ms"} -[01d 01-09 08:58:29.65 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.24.0.8:33322: rpc error: code = Canceled desc = context canceled -[01e 01-09 08:58:29.65 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T08:58:29.64Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.24.0.8:33322", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "14.6636ms"} -[01f 01-09 08:58:29.82 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.24.0.8:33324: rpc error: code = Canceled desc = context canceled -[020 01-09 08:58:29.82 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T08:58:29.819Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.24.0.8:33324", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "9.9722ms"} -[021 01-09 08:58:30.03 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.24.0.8:33326: rpc error: code = Canceled desc = context canceled -[022 01-09 08:58:30.03 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T08:58:30.025Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.24.0.8:33326", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "8.6022ms"} -[023 01-09 08:58:30.23 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.24.0.8:33328: rpc error: code = Canceled desc = context canceled -[024 01-09 08:58:30.23 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T08:58:30.223Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.24.0.8:33328", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "13.5946ms"} -[025 01-09 08:58:30.44 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.24.0.8:33330: rpc error: code = Canceled desc = context canceled -[026 01-09 08:58:30.44 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T08:58:30.431Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.24.0.8:33330", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "8.6551ms"} -[027 01-09 08:58:30.62 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.24.0.8:33332: rpc error: code = Canceled desc = context canceled -[028 01-09 08:58:30.62 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T08:58:30.613Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.24.0.8:33332", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "7.9043ms"} -[029 01-09 08:58:30.83 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.24.0.8:33334: rpc error: code = Canceled desc = context canceled -[02a 01-09 08:58:30.83 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T08:58:30.829Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.24.0.8:33334", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "9.7979ms"} -[02b 01-09 08:58:31.01 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.24.0.8:33336: rpc error: code = Canceled desc = context canceled -[02c 01-09 08:58:31.01 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T08:58:31.007Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.24.0.8:33336", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "7.1246ms"} -[02d 01-09 08:58:31.24 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.24.0.8:33338: rpc error: code = Canceled desc = context canceled -[02e 01-09 08:58:31.24 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T08:58:31.225Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.24.0.8:33338", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "23.7998ms"} -[02f 01-09 08:58:31.42 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.24.0.8:33340: rpc error: code = Canceled desc = context canceled -[030 01-09 08:58:31.42 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T08:58:31.409Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.24.0.8:33340", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "14.116ms"} -[031 01-09 08:58:31.67 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.24.0.8:33342: rpc error: code = Canceled desc = context canceled -[032 01-09 08:58:31.67 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T08:58:31.652Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.24.0.8:33342", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "20.0764ms"} -[033 01-09 08:58:38.27 UTC] [%{longpkg}] %{callpath} -> WARN De-duplicating identity [Org1MSP0270edfed53a78d7d3c66dc25737f57f956e48ef69dca5ecc91c26679dd4eff3] at index 2 in signature set -[034 01-09 08:58:38.27 UTC] [%{longpkg}] %{callpath} -> WARN De-duplicating identity [Org1MSP0270edfed53a78d7d3c66dc25737f57f956e48ef69dca5ecc91c26679dd4eff3] at index 2 in signature set -[035 01-09 08:58:38.29 UTC] [%{longpkg}] %{callpath} -> WARN De-duplicating identity [Org1MSP0270edfed53a78d7d3c66dc25737f57f956e48ef69dca5ecc91c26679dd4eff3] at index 2 in signature set -[036 01-09 08:58:38.29 UTC] [%{longpkg}] %{callpath} -> WARN De-duplicating identity [Org1MSP0270edfed53a78d7d3c66dc25737f57f956e48ef69dca5ecc91c26679dd4eff3] at index 2 in signature set -[037 01-09 08:58:38.29 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.24.0.8:33352: rpc error: code = Canceled desc = context canceled -[038 01-09 08:58:38.30 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T08:58:38.269Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Broadcast", "grpc.peer_address": "172.24.0.8:33352", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "30.4208ms"} -[039 01-09 08:58:38.30 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.24.0.8:33350: rpc error: code = Canceled desc = context canceled -[03a 01-09 08:58:38.30 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T08:58:38.25Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.24.0.8:33350", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "50.303ms"} -[03b 01-09 08:58:40.54 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.24.0.8:33376: rpc error: code = Canceled desc = context canceled -[03c 01-09 08:58:40.54 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T08:58:40.535Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.24.0.8:33376", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "9.9595ms"} -[03d 01-09 08:58:40.71 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.24.0.8:33378: rpc error: code = Canceled desc = context canceled -[03e 01-09 08:58:40.71 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T08:58:40.707Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.24.0.8:33378", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "7.8979ms"} -[03f 01-09 08:58:41.31 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.24.0.8:33382: rpc error: code = Canceled desc = context canceled -[040 01-09 08:58:41.31 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T08:58:41.307Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.24.0.8:33382", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "7.027ms"} -[041 01-09 08:58:41.51 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.24.0.8:33384: rpc error: code = Canceled desc = context canceled -[042 01-09 08:58:41.51 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T08:58:41.502Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.24.0.8:33384", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "15.4039ms"} -[043 01-09 08:58:41.69 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.24.0.8:33386: rpc error: code = Canceled desc = context canceled -[044 01-09 08:58:41.69 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T08:58:41.683Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.24.0.8:33386", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "9.2124ms"} -[045 01-09 08:58:41.88 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.24.0.8:33388: rpc error: code = Canceled desc = context canceled -[046 01-09 08:58:41.88 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T08:58:41.865Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.24.0.8:33388", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "18.4352ms"} -[047 01-09 08:58:42.10 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.24.0.8:33390: rpc error: code = Canceled desc = context canceled -[048 01-09 08:58:42.10 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T08:58:42.095Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.24.0.8:33390", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "12.9751ms"} -[049 01-09 08:58:42.30 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.24.0.8:33392: rpc error: code = Canceled desc = context canceled -[04a 01-09 08:58:42.30 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T08:58:42.293Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.24.0.8:33392", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "9.7753ms"} -[04b 01-09 08:58:42.49 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.24.0.8:33394: rpc error: code = Canceled desc = context canceled -[04c 01-09 08:58:42.49 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T08:58:42.487Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.24.0.8:33394", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "9.8686ms"} -[04d 01-09 08:58:42.67 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.24.0.8:33396: rpc error: code = Canceled desc = context canceled -[04e 01-09 08:58:42.67 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T08:58:42.671Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.24.0.8:33396", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "8.1079ms"} -[04f 01-09 08:58:42.87 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.24.0.8:33398: rpc error: code = Canceled desc = context canceled -[050 01-09 08:58:42.87 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T08:58:42.859Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.24.0.8:33398", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "12.8998ms"} -[051 01-09 08:58:43.09 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.24.0.8:33400: rpc error: code = Canceled desc = context canceled -[052 01-09 08:58:43.09 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T08:58:43.091Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.24.0.8:33400", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "5.0606ms"} -[053 01-09 08:58:43.28 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.24.0.8:33402: rpc error: code = Canceled desc = context canceled -[054 01-09 08:58:43.28 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T08:58:43.273Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.24.0.8:33402", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "11.0081ms"} -[055 01-09 08:58:43.51 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.24.0.8:33408: rpc error: code = Canceled desc = context canceled -[056 01-09 08:58:43.52 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T08:58:43.509Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.24.0.8:33408", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "12.4437ms"} -[057 01-09 08:58:43.72 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.24.0.8:33410: rpc error: code = Canceled desc = context canceled -[058 01-09 08:58:43.72 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T08:58:43.714Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.24.0.8:33410", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "14.2761ms"} +[007 03-12 01:56:09.15 UTC] [%{longpkg}] %{callpath} -> INFO Beginning to serve requests +[008 03-12 01:56:21.09 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-03-12T01:56:21.033Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.28.0.3:53160", "grpc.code": "OK", "grpc.call_duration": "62.1764ms"} +[009 03-12 01:56:21.09 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-03-12T01:56:21.048Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Broadcast", "grpc.peer_address": "172.28.0.3:53162", "grpc.code": "OK", "grpc.call_duration": "47.2839ms"} +[00a 03-12 01:56:21.11 UTC] [%{longpkg}] %{callpath} -> INFO Getting block information from block storage +[00b 03-12 01:56:21.12 UTC] [%{longpkg}] %{callpath} -> INFO Created and starting new chain businesschannel +[00c 03-12 01:56:21.33 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.28.0.3:53164: rpc error: code = Canceled desc = context canceled +[00d 03-12 01:56:21.33 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-03-12T01:56:21.11Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.28.0.3:53164", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "220.4093ms"} +[00e 03-12 01:56:25.37 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.28.0.3:53194: rpc error: code = Canceled desc = context canceled +[00f 03-12 01:56:25.37 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-03-12T01:56:25.328Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Broadcast", "grpc.peer_address": "172.28.0.3:53194", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "44.8342ms"} +[010 03-12 01:56:25.37 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.28.0.3:53192: rpc error: code = Canceled desc = context canceled +[011 03-12 01:56:25.37 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-03-12T01:56:25.313Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.28.0.3:53192", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "60.2145ms"} +[012 03-12 01:56:27.58 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.28.0.3:53198: rpc error: code = Canceled desc = context canceled +[013 03-12 01:56:27.58 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-03-12T01:56:27.536Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.28.0.3:53198", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "46.339ms"} +[014 03-12 01:56:27.58 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.28.0.3:53200: rpc error: code = Canceled desc = context canceled +[015 03-12 01:56:27.58 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-03-12T01:56:27.55Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Broadcast", "grpc.peer_address": "172.28.0.3:53200", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "34.0862ms"} +[016 03-12 01:56:33.41 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-03-12T01:56:28.405Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.28.0.6:55746", "grpc.peer_subject": "CN=peer0.org2.example.com,L=San Francisco,ST=California,C=US", "error": "context finished before block retrieved: context canceled", "grpc.code": "Unknown", "grpc.call_duration": "5.0081278s"} +[017 03-12 01:57:11.24 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.28.0.3:53278: rpc error: code = Canceled desc = context canceled +[018 03-12 01:57:11.24 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-03-12T01:56:33.637Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Broadcast", "grpc.peer_address": "172.28.0.3:53278", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "37.6402379s"} +[019 03-12 01:57:48.89 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.28.0.3:53350: rpc error: code = Canceled desc = context canceled +[01a 03-12 01:57:48.89 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-03-12T01:57:48.877Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Broadcast", "grpc.peer_address": "172.28.0.3:53350", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "16.0975ms"} +[01b 03-12 01:57:51.41 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.28.0.3:53364: rpc error: code = Canceled desc = context canceled +[01c 03-12 01:57:51.41 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-03-12T01:57:51.38Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Broadcast", "grpc.peer_address": "172.28.0.3:53364", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "30.5863ms"} +[01d 03-12 01:57:56.69 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.28.0.3:53418: rpc error: code = Canceled desc = context canceled +[01e 03-12 01:57:56.69 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-03-12T01:57:56.683Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.28.0.3:53418", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "9.6687ms"} +[01f 03-12 01:57:56.92 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.28.0.3:53420: rpc error: code = Canceled desc = context canceled +[020 03-12 01:57:56.92 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-03-12T01:57:56.914Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.28.0.3:53420", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "14.3459ms"} +[021 03-12 01:57:57.08 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.28.0.3:53422: rpc error: code = Canceled desc = context canceled +[022 03-12 01:57:57.08 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-03-12T01:57:57.078Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.28.0.3:53422", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "10.3056ms"} +[023 03-12 01:57:57.29 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.28.0.3:53424: rpc error: code = Canceled desc = context canceled +[024 03-12 01:57:57.29 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-03-12T01:57:57.286Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.28.0.3:53424", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "13.7532ms"} +[025 03-12 01:57:57.46 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.28.0.3:53426: rpc error: code = Canceled desc = context canceled +[026 03-12 01:57:57.46 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-03-12T01:57:57.454Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.28.0.3:53426", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "11.6993ms"} +[027 03-12 01:57:57.63 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.28.0.3:53428: rpc error: code = Canceled desc = context canceled +[028 03-12 01:57:57.63 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-03-12T01:57:57.623Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.28.0.3:53428", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "9.5881ms"} +[029 03-12 01:57:57.81 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.28.0.3:53430: rpc error: code = Canceled desc = context canceled +[02a 03-12 01:57:57.82 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-03-12T01:57:57.809Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.28.0.3:53430", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "10.5344ms"} +[02b 03-12 01:57:58.03 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.28.0.3:53432: rpc error: code = Canceled desc = context canceled +[02c 03-12 01:57:58.03 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-03-12T01:57:58.027Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.28.0.3:53432", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "10.0359ms"} +[02d 03-12 01:57:58.20 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.28.0.3:53434: rpc error: code = Canceled desc = context canceled +[02e 03-12 01:57:58.20 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-03-12T01:57:58.196Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.28.0.3:53434", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "7.6203ms"} +[02f 03-12 01:57:58.39 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.28.0.3:53436: rpc error: code = Canceled desc = context canceled +[030 03-12 01:57:58.39 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-03-12T01:57:58.378Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.28.0.3:53436", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "15.7117ms"} +[031 03-12 01:57:58.53 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.28.0.3:53438: rpc error: code = Canceled desc = context canceled +[032 03-12 01:57:58.53 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-03-12T01:57:58.527Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.28.0.3:53438", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "8.8293ms"} +[033 03-12 01:57:58.71 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.28.0.3:53440: rpc error: code = Canceled desc = context canceled +[034 03-12 01:57:58.71 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-03-12T01:57:58.703Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.28.0.3:53440", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "14.1157ms"} +[035 03-12 01:58:05.09 UTC] [%{longpkg}] %{callpath} -> WARN De-duplicating identity [Org1MSP0270edfed53a78d7d3c66dc25737f57f956e48ef69dca5ecc91c26679dd4eff3] at index 2 in signature set +[036 03-12 01:58:05.09 UTC] [%{longpkg}] %{callpath} -> WARN De-duplicating identity [Org1MSP0270edfed53a78d7d3c66dc25737f57f956e48ef69dca5ecc91c26679dd4eff3] at index 2 in signature set +[037 03-12 01:58:05.11 UTC] [%{longpkg}] %{callpath} -> WARN De-duplicating identity [Org1MSP0270edfed53a78d7d3c66dc25737f57f956e48ef69dca5ecc91c26679dd4eff3] at index 2 in signature set +[038 03-12 01:58:05.11 UTC] [%{longpkg}] %{callpath} -> WARN De-duplicating identity [Org1MSP0270edfed53a78d7d3c66dc25737f57f956e48ef69dca5ecc91c26679dd4eff3] at index 2 in signature set +[039 03-12 01:58:05.13 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.28.0.3:53448: rpc error: code = Canceled desc = context canceled +[03b 03-12 01:58:05.13 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-03-12T01:58:05.075Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.28.0.3:53448", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "63.377ms"} +[03a 03-12 01:58:05.13 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.28.0.3:53450: rpc error: code = Canceled desc = context canceled +[03c 03-12 01:58:05.13 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-03-12T01:58:05.089Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Broadcast", "grpc.peer_address": "172.28.0.3:53450", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "50.2963ms"} +[03d 03-12 01:58:07.28 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.28.0.3:53476: rpc error: code = Canceled desc = context canceled +[03e 03-12 01:58:07.28 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-03-12T01:58:07.274Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.28.0.3:53476", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "10.634ms"} +[03f 03-12 01:58:07.41 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.28.0.3:53478: rpc error: code = Canceled desc = context canceled +[040 03-12 01:58:07.41 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-03-12T01:58:07.409Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.28.0.3:53478", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "8.8805ms"} +[041 03-12 01:58:07.92 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.28.0.3:53480: rpc error: code = Canceled desc = context canceled +[042 03-12 01:58:07.92 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-03-12T01:58:07.916Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.28.0.3:53480", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "8.4446ms"} +[043 03-12 01:58:08.10 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.28.0.3:53482: rpc error: code = Canceled desc = context canceled +[044 03-12 01:58:08.10 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-03-12T01:58:08.088Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.28.0.3:53482", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "18.47ms"} +[045 03-12 01:58:08.24 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.28.0.3:53484: rpc error: code = Canceled desc = context canceled +[046 03-12 01:58:08.24 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-03-12T01:58:08.229Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.28.0.3:53484", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "11.8529ms"} +[047 03-12 01:58:08.40 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.28.0.3:53486: rpc error: code = Canceled desc = context canceled +[048 03-12 01:58:08.40 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-03-12T01:58:08.4Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.28.0.3:53486", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "9.2073ms"} +[049 03-12 01:58:08.57 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.28.0.3:53488: rpc error: code = Canceled desc = context canceled +[04a 03-12 01:58:08.57 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-03-12T01:58:08.561Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.28.0.3:53488", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "11.9281ms"} +[04b 03-12 01:58:08.72 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.28.0.3:53490: rpc error: code = Canceled desc = context canceled +[04c 03-12 01:58:08.73 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-03-12T01:58:08.721Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.28.0.3:53490", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "9.3499ms"} +[04d 03-12 01:58:08.90 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.28.0.3:53492: rpc error: code = Canceled desc = context canceled +[04e 03-12 01:58:08.91 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-03-12T01:58:08.899Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.28.0.3:53492", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "10.6356ms"} +[04f 03-12 01:58:09.10 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.28.0.3:53494: rpc error: code = Canceled desc = context canceled +[050 03-12 01:58:09.10 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-03-12T01:58:09.096Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.28.0.3:53494", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "11.6882ms"} +[051 03-12 01:58:10.33 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.28.0.3:53498: rpc error: code = Canceled desc = context canceled +[052 03-12 01:58:10.33 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-03-12T01:58:10.32Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.28.0.3:53498", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "13.0151ms"} +[053 03-12 01:58:10.50 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.28.0.3:53500: rpc error: code = Canceled desc = context canceled +[054 03-12 01:58:10.50 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-03-12T01:58:10.498Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.28.0.3:53500", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "10.0335ms"} +[055 03-12 01:58:10.68 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.28.0.3:53502: rpc error: code = Canceled desc = context canceled +[056 03-12 01:58:10.68 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-03-12T01:58:10.671Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.28.0.3:53502", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "11.3708ms"} +[057 03-12 01:58:10.81 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.28.0.3:53504: rpc error: code = Canceled desc = context canceled +[058 03-12 01:58:10.81 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-03-12T01:58:10.807Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.28.0.3:53504", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "8.864ms"} +[059 03-12 01:58:10.98 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.28.0.3:53508: rpc error: code = Canceled desc = context canceled +[05a 03-12 01:58:10.98 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-03-12T01:58:10.975Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.28.0.3:53508", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "10.4767ms"} diff --git a/hyperledger_fabric/v1.4.0/solo/logs/dev_peer0.log b/hyperledger_fabric/v1.4.0/solo/logs/dev_peer0.log index cf242bc5..3355d233 100644 --- a/hyperledger_fabric/v1.4.0/solo/logs/dev_peer0.log +++ b/hyperledger_fabric/v1.4.0/solo/logs/dev_peer0.log @@ -1,189 +1,189 @@ -[001 01-09 08:56:43.71 UTC] [%{longpkg}] %{callpath} -> INFO Starting peer: - Version: 1.4.0-rc1 +[001 03-12 01:56:13.66 UTC] [%{longpkg}] %{callpath} -> INFO Starting peer: + Version: 1.4.0 Commit SHA: development build - Go version: go1.11.2 + Go version: go1.11.4 OS/Arch: linux/amd64 Chaincode: Base Image Version: 0.4.14 Base Docker Namespace: hyperledger Base Docker Label: org.hyperledger.fabric Docker Namespace: hyperledger -[002 01-09 08:56:43.71 UTC] [%{longpkg}] %{callpath} -> INFO Initializing ledger mgmt -[003 01-09 08:56:43.71 UTC] [%{longpkg}] %{callpath} -> INFO Initializing ledger provider -[004 01-09 08:56:43.83 UTC] [%{longpkg}] %{callpath} -> INFO ledger provider Initialized -[005 01-09 08:56:43.89 UTC] [%{longpkg}] %{callpath} -> INFO ledger mgmt initialized -[006 01-09 08:56:43.89 UTC] [%{longpkg}] %{callpath} -> INFO Auto-detected peer address: 172.24.0.6:7051 -[007 01-09 08:56:43.89 UTC] [%{longpkg}] %{callpath} -> INFO Returning peer0.org1.example.com:7051 -[008 01-09 08:56:43.89 UTC] [%{longpkg}] %{callpath} -> INFO Auto-detected peer address: 172.24.0.6:7051 -[009 01-09 08:56:43.89 UTC] [%{longpkg}] %{callpath} -> INFO Returning peer0.org1.example.com:7051 -[00a 01-09 08:56:43.90 UTC] [%{longpkg}] %{callpath} -> INFO Starting peer with TLS enabled -[00b 01-09 08:56:43.91 UTC] [%{longpkg}] %{callpath} -> INFO Entering computeChaincodeEndpoint with peerHostname: peer0.org1.example.com -[00c 01-09 08:56:43.91 UTC] [%{longpkg}] %{callpath} -> INFO Exit with ccEndpoint: peer0.org1.example.com:7052 -[00d 01-09 08:56:43.93 UTC] [%{longpkg}] %{callpath} -> INFO system chaincode lscc(github.com/hyperledger/fabric/core/scc/lscc) registered -[00e 01-09 08:56:43.93 UTC] [%{longpkg}] %{callpath} -> INFO system chaincode cscc(github.com/hyperledger/fabric/core/scc/cscc) registered -[00f 01-09 08:56:43.93 UTC] [%{longpkg}] %{callpath} -> INFO system chaincode qscc(github.com/hyperledger/fabric/core/scc/qscc) registered -[010 01-09 08:56:43.93 UTC] [%{longpkg}] %{callpath} -> INFO system chaincode +lifecycle(github.com/hyperledger/fabric/core/chaincode/lifecycle) registered -[011 01-09 08:56:43.94 UTC] [%{longpkg}] %{callpath} -> INFO Initialize gossip with endpoint peer0.org1.example.com:7051 and bootstrap set [127.0.0.1:7051] -[012 01-09 08:56:43.94 UTC] [%{longpkg}] %{callpath} -> INFO Creating gossip service with self membership of Endpoint: peer0.org1.example.com:7051, InternalEndpoint: peer0.org1.example.com:7051, PKI-ID: 3d21b0bc142d8ddae3c27797c0c2bf16b05e0414b227484fdbfabf9859231106, Metadata: -[013 01-09 08:56:43.94 UTC] [%{longpkg}] %{callpath} -> INFO Gossip instance peer0.org1.example.com:7051 started -[014 01-09 08:56:43.95 UTC] [%{longpkg}] %{callpath} -> INFO system chaincode lscc/(github.com/hyperledger/fabric/core/scc/lscc) deployed -[015 01-09 08:56:43.95 UTC] [%{longpkg}] %{callpath} -> INFO Init CSCC -[016 01-09 08:56:43.95 UTC] [%{longpkg}] %{callpath} -> INFO system chaincode cscc/(github.com/hyperledger/fabric/core/scc/cscc) deployed -[017 01-09 08:56:43.95 UTC] [%{longpkg}] %{callpath} -> INFO Init QSCC -[018 01-09 08:56:43.95 UTC] [%{longpkg}] %{callpath} -> INFO system chaincode qscc/(github.com/hyperledger/fabric/core/scc/qscc) deployed -[019 01-09 08:56:43.95 UTC] [%{longpkg}] %{callpath} -> INFO system chaincode +lifecycle/(github.com/hyperledger/fabric/core/chaincode/lifecycle) deployed -[01a 01-09 08:56:43.95 UTC] [%{longpkg}] %{callpath} -> INFO Deployed system chaincodes -[01b 01-09 08:56:43.95 UTC] [%{longpkg}] %{callpath} -> INFO Created with config TLS: true, authCacheMaxSize: 1000, authCachePurgeRatio: 0.750000 -[01c 01-09 08:56:43.95 UTC] [%{longpkg}] %{callpath} -> INFO Discovery service activated -[01d 01-09 08:56:43.95 UTC] [%{longpkg}] %{callpath} -> INFO Starting peer with ID=[name:"peer0.org1.example.com" ], network ID=[dev], address=[peer0.org1.example.com:7051] -[01e 01-09 08:56:43.95 UTC] [%{longpkg}] %{callpath} -> INFO Started peer with ID=[name:"peer0.org1.example.com" ], network ID=[dev], address=[peer0.org1.example.com:7051] -[01f 01-09 08:56:44.45 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T08:56:44.454Z", "grpc.service": "gossip.Gossip", "grpc.method": "Ping", "grpc.request_deadline": "2019-01-09T08:56:46.453Z", "grpc.peer_address": "172.24.0.4:36846", "grpc.peer_subject": "CN=peer1.org1.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "153.2µs"} -[020 01-09 08:56:44.48 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T08:56:44.46Z", "grpc.service": "gossip.Gossip", "grpc.method": "GossipStream", "grpc.request_deadline": "2019-01-09T08:56:54.46Z", "grpc.peer_address": "172.24.0.4:36846", "grpc.peer_subject": "CN=peer1.org1.example.com,L=San Francisco,ST=California,C=US", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "25.0531ms"} -[021 01-09 08:56:44.52 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T08:56:44.526Z", "grpc.service": "gossip.Gossip", "grpc.method": "Ping", "grpc.request_deadline": "2019-01-09T08:56:46.526Z", "grpc.peer_address": "172.24.0.4:36848", "grpc.peer_subject": "CN=peer1.org1.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "134.3µs"} -[022 01-09 08:56:52.11 UTC] [%{longpkg}] %{callpath} -> INFO [][f3e4d798] Entry chaincode: name:"cscc" -[023 01-09 08:56:52.11 UTC] [%{longpkg}] %{callpath} -> INFO Creating ledger [businesschannel] with genesis block -[024 01-09 08:56:52.11 UTC] [%{longpkg}] %{callpath} -> INFO Getting block information from block storage -[025 01-09 08:56:52.13 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Committed block [0] with 1 transaction(s) in 19ms (state_validation=0ms block_commit=9ms state_commit=3ms) -[026 01-09 08:56:52.14 UTC] [%{longpkg}] %{callpath} -> INFO Created ledger [businesschannel] with genesis block -[027 01-09 08:56:52.15 UTC] [%{longpkg}] %{callpath} -> INFO Joining gossip network of channel businesschannel with 2 organizations -[028 01-09 08:56:52.15 UTC] [%{longpkg}] %{callpath} -> INFO No configured anchor peers of Org2MSP for channel businesschannel to learn about -[029 01-09 08:56:52.15 UTC] [%{longpkg}] %{callpath} -> INFO No configured anchor peers of Org1MSP for channel businesschannel to learn about -[02a 01-09 08:56:52.17 UTC] [%{longpkg}] %{callpath} -> INFO Updating metadata information, current ledger sequence is at = 0, next expected block is = 1 -[02b 01-09 08:56:52.17 UTC] [%{longpkg}] %{callpath} -> INFO system chaincode lscc/businesschannel(github.com/hyperledger/fabric/core/scc/lscc) deployed -[02c 01-09 08:56:52.17 UTC] [%{longpkg}] %{callpath} -> INFO Init CSCC -[02d 01-09 08:56:52.17 UTC] [%{longpkg}] %{callpath} -> INFO system chaincode cscc/businesschannel(github.com/hyperledger/fabric/core/scc/cscc) deployed -[02e 01-09 08:56:52.17 UTC] [%{longpkg}] %{callpath} -> INFO Init QSCC -[02f 01-09 08:56:52.17 UTC] [%{longpkg}] %{callpath} -> INFO system chaincode qscc/businesschannel(github.com/hyperledger/fabric/core/scc/qscc) deployed -[030 01-09 08:56:52.17 UTC] [%{longpkg}] %{callpath} -> INFO system chaincode +lifecycle/businesschannel(github.com/hyperledger/fabric/core/chaincode/lifecycle) deployed -[031 01-09 08:56:52.18 UTC] [%{longpkg}] %{callpath} -> INFO [][f3e4d798] Exit chaincode: name:"cscc" (70ms) -[032 01-09 08:56:52.18 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T08:56:52.108Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.24.0.8:47162", "grpc.code": "OK", "grpc.call_duration": "72.0132ms"} -[033 01-09 08:56:53.39 UTC] [%{longpkg}] %{callpath} -> INFO [][a283709a] Entry chaincode: name:"cscc" -[034 01-09 08:56:53.39 UTC] [%{longpkg}] %{callpath} -> INFO [][a283709a] Exit chaincode: name:"cscc" (1ms) -[035 01-09 08:56:53.40 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T08:56:53.397Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.24.0.8:47170", "grpc.code": "OK", "grpc.call_duration": "2.7433ms"} -[036 01-09 08:56:54.41 UTC] [%{longpkg}] %{callpath} -> INFO [][86474afb] Entry chaincode: name:"qscc" -[037 01-09 08:56:54.41 UTC] [%{longpkg}] %{callpath} -> INFO [][86474afb] Exit chaincode: name:"qscc" (2ms) -[038 01-09 08:56:54.41 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T08:56:54.411Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.24.0.8:47178", "grpc.code": "OK", "grpc.call_duration": "3.8551ms"} -[039 01-09 08:56:57.15 UTC] [%{longpkg}] %{callpath} -> INFO Membership view has changed. peers went online: [[peer1.org1.example.com:7051]] , current view: [[peer1.org1.example.com:7051]] -[03a 01-09 08:56:58.17 UTC] [%{longpkg}] %{callpath} -> INFO 3d21b0bc142d8ddae3c27797c0c2bf16b05e0414b227484fdbfabf9859231106 : Becoming a leader -[03b 01-09 08:56:58.17 UTC] [%{longpkg}] %{callpath} -> INFO Elected as a leader, starting delivery service for channel businesschannel -[03c 01-09 08:56:58.20 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Received block [1] from buffer -[03d 01-09 08:56:58.25 UTC] [%{longpkg}] %{callpath} -> INFO Joining gossip network of channel businesschannel with 2 organizations -[03e 01-09 08:56:58.25 UTC] [%{longpkg}] %{callpath} -> INFO Learning about the configured anchor peers of Org1MSP for channel businesschannel : [{peer0.org1.example.com 7051}] -[03f 01-09 08:56:58.25 UTC] [%{longpkg}] %{callpath} -> INFO Anchor peer with same endpoint, skipping connecting to myself -[040 01-09 08:56:58.25 UTC] [%{longpkg}] %{callpath} -> INFO No configured anchor peers of Org2MSP for channel businesschannel to learn about -[041 01-09 08:56:58.26 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T08:56:58.266Z", "grpc.service": "gossip.Gossip", "grpc.method": "Ping", "grpc.request_deadline": "2019-01-09T08:57:00.265Z", "grpc.peer_address": "172.24.0.4:36894", "grpc.peer_subject": "CN=peer1.org1.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "194µs"} -[042 01-09 08:56:58.27 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T08:56:44.53Z", "grpc.service": "gossip.Gossip", "grpc.method": "GossipStream", "grpc.peer_address": "172.24.0.4:36848", "grpc.peer_subject": "CN=peer1.org1.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "13.7728773s"} -[043 01-09 08:56:58.27 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T08:56:58.268Z", "grpc.service": "gossip.Gossip", "grpc.method": "GossipStream", "grpc.request_deadline": "2019-01-09T08:57:08.268Z", "grpc.peer_address": "172.24.0.4:36894", "grpc.peer_subject": "CN=peer1.org1.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "1.8062ms"} -[044 01-09 08:56:58.28 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Validated block [1] in 72ms -[045 01-09 08:56:58.31 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Committed block [1] with 1 transaction(s) in 27ms (state_validation=0ms block_commit=15ms state_commit=6ms) -[046 01-09 08:56:58.31 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Received block [2] from buffer -[047 01-09 08:56:58.34 UTC] [%{longpkg}] %{callpath} -> INFO Joining gossip network of channel businesschannel with 2 organizations -[048 01-09 08:56:58.34 UTC] [%{longpkg}] %{callpath} -> INFO Learning about the configured anchor peers of Org2MSP for channel businesschannel : [{peer0.org2.example.com 7051}] -[049 01-09 08:56:58.34 UTC] [%{longpkg}] %{callpath} -> INFO Learning about the configured anchor peers of Org1MSP for channel businesschannel : [{peer0.org1.example.com 7051}] -[04a 01-09 08:56:58.35 UTC] [%{longpkg}] %{callpath} -> INFO Anchor peer with same endpoint, skipping connecting to myself -[04b 01-09 08:56:58.38 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Validated block [2] in 68ms -[04c 01-09 08:56:58.48 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Committed block [2] with 1 transaction(s) in 97ms (state_validation=8ms block_commit=81ms state_commit=3ms) -[04d 01-09 08:56:58.53 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T08:56:58.529Z", "grpc.service": "gossip.Gossip", "grpc.method": "Ping", "grpc.request_deadline": "2019-01-09T08:57:00.528Z", "grpc.peer_address": "172.24.0.4:36900", "grpc.peer_subject": "CN=peer1.org1.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "707µs"} -[04e 01-09 08:56:58.54 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T08:56:58.535Z", "grpc.service": "gossip.Gossip", "grpc.method": "GossipStream", "grpc.request_deadline": "2019-01-09T08:57:08.534Z", "grpc.peer_address": "172.24.0.4:36900", "grpc.peer_subject": "CN=peer1.org1.example.com,L=San Francisco,ST=California,C=US", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "9.3923ms"} -[04f 01-09 08:56:58.55 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T08:56:58.559Z", "grpc.service": "gossip.Gossip", "grpc.method": "Ping", "grpc.request_deadline": "2019-01-09T08:57:00.558Z", "grpc.peer_address": "172.24.0.4:36904", "grpc.peer_subject": "CN=peer1.org1.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "148.2µs"} -[050 01-09 08:56:58.60 UTC] [%{longpkg}] %{callpath} -> WARN Message GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes isn't valid -[051 01-09 08:56:58.75 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T08:56:58.749Z", "grpc.service": "gossip.Gossip", "grpc.method": "Ping", "grpc.request_deadline": "2019-01-09T08:57:00.748Z", "grpc.peer_address": "172.24.0.3:55508", "grpc.peer_subject": "CN=peer0.org2.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "568.1µs"} -[052 01-09 08:56:58.78 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T08:56:58.756Z", "grpc.service": "gossip.Gossip", "grpc.method": "GossipStream", "grpc.request_deadline": "2019-01-09T08:57:08.755Z", "grpc.peer_address": "172.24.0.3:55508", "grpc.peer_subject": "CN=peer0.org2.example.com,L=San Francisco,ST=California,C=US", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "31.6442ms"} -[053 01-09 08:56:58.81 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T08:56:58.807Z", "grpc.service": "gossip.Gossip", "grpc.method": "Ping", "grpc.request_deadline": "2019-01-09T08:57:00.806Z", "grpc.peer_address": "172.24.0.5:58994", "grpc.peer_subject": "CN=peer1.org2.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "2.7753ms"} -[054 01-09 08:56:58.85 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T08:56:58.814Z", "grpc.service": "gossip.Gossip", "grpc.method": "GossipStream", "grpc.request_deadline": "2019-01-09T08:57:08.814Z", "grpc.peer_address": "172.24.0.5:58994", "grpc.peer_subject": "CN=peer1.org2.example.com,L=San Francisco,ST=California,C=US", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "37.8175ms"} -[055 01-09 08:56:58.86 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T08:56:58.862Z", "grpc.service": "gossip.Gossip", "grpc.method": "Ping", "grpc.request_deadline": "2019-01-09T08:57:00.862Z", "grpc.peer_address": "172.24.0.5:58996", "grpc.peer_subject": "CN=peer1.org2.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "260.7µs"} -[056 01-09 08:56:58.89 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T08:56:58.894Z", "grpc.service": "gossip.Gossip", "grpc.method": "Ping", "grpc.request_deadline": "2019-01-09T08:57:00.891Z", "grpc.peer_address": "172.24.0.3:55514", "grpc.peer_subject": "CN=peer0.org2.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "542.2µs"} -[057 01-09 08:56:58.92 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T08:56:58.901Z", "grpc.service": "gossip.Gossip", "grpc.method": "GossipStream", "grpc.request_deadline": "2019-01-09T08:57:08.901Z", "grpc.peer_address": "172.24.0.3:55514", "grpc.peer_subject": "CN=peer0.org2.example.com,L=San Francisco,ST=California,C=US", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "21.7184ms"} -[058 01-09 08:56:58.93 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T08:56:58.935Z", "grpc.service": "gossip.Gossip", "grpc.method": "Ping", "grpc.request_deadline": "2019-01-09T08:57:00.935Z", "grpc.peer_address": "172.24.0.3:55516", "grpc.peer_subject": "CN=peer0.org2.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "132.5µs"} -[059 01-09 08:56:58.94 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T08:56:58.948Z", "grpc.service": "gossip.Gossip", "grpc.method": "Ping", "grpc.request_deadline": "2019-01-09T08:57:00.947Z", "grpc.peer_address": "172.24.0.5:59004", "grpc.peer_subject": "CN=peer1.org2.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "514.8µs"} -[05a 01-09 08:57:01.97 UTC] [%{longpkg}] %{callpath} -> WARN Failed reading messge from 172.24.0.5:59004, reason: Timed out waiting for connection message from 172.24.0.5:59004 -[05b 01-09 08:57:01.98 UTC] [%{longpkg}] %{callpath} -> ERRO Authentication failed: Timed out waiting for connection message from 172.24.0.5:59004 -[05c 01-09 08:57:01.98 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T08:56:58.952Z", "grpc.service": "gossip.Gossip", "grpc.method": "GossipStream", "grpc.request_deadline": "2019-01-09T08:57:08.951Z", "grpc.peer_address": "172.24.0.5:59004", "grpc.peer_subject": "CN=peer1.org2.example.com,L=San Francisco,ST=California,C=US", "error": "Timed out waiting for connection message from 172.24.0.5:59004", "grpc.code": "Unknown", "grpc.call_duration": "3.0293632s"} -[05d 01-09 08:57:02.15 UTC] [%{longpkg}] %{callpath} -> INFO Membership view has changed. peers went online: [[peer0.org2.example.com:7051 ] [peer1.org2.example.com:7051 ]] , current view: [[peer1.org1.example.com:7051] [peer0.org2.example.com:7051 ] [peer1.org2.example.com:7051 ]] -[05e 01-09 08:57:03.42 UTC] [%{longpkg}] %{callpath} -> INFO [][48fb2994] Entry chaincode: name:"lscc" -[05f 01-09 08:57:03.42 UTC] [%{longpkg}] %{callpath} -> INFO Installed Chaincode [exp02] Version [1.0] to peer -[060 01-09 08:57:03.43 UTC] [%{longpkg}] %{callpath} -> INFO [][48fb2994] Exit chaincode: name:"lscc" (7ms) -[061 01-09 08:57:03.44 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T08:57:03.422Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.24.0.8:47232", "grpc.code": "OK", "grpc.call_duration": "18.9978ms"} -[062 01-09 08:57:06.16 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][2966997c] Entry chaincode: name:"lscc" -[063 01-09 08:57:06.18 UTC] [%{longpkg}] %{callpath} -> INFO building chaincode with ldflagsOpt: '-ldflags "-linkmode external -extldflags '-static'"' -[064 01-09 08:57:42.42 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][2966997c] Exit chaincode: name:"lscc" (36295ms) -[065 01-09 08:57:42.42 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T08:57:06.163Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.24.0.8:47256", "grpc.code": "OK", "grpc.call_duration": "36.2996233s"} -[066 01-09 08:57:44.44 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Received block [3] from buffer -[067 01-09 08:57:44.47 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Validated block [3] in 33ms -[068 01-09 08:57:44.47 UTC] [%{longpkg}] %{callpath} -> INFO Channel [businesschannel]: Handling deploy or update of chaincode [exp02] -[069 01-09 08:57:44.51 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Committed block [3] with 1 transaction(s) in 32ms (state_validation=3ms block_commit=18ms state_commit=6ms) -[06a 01-09 08:58:19.54 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][6868fdb9] Entry chaincode: name:"exp02" -[06b 01-09 08:58:19.55 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][6868fdb9] Exit chaincode: name:"exp02" (10ms) -[06c 01-09 08:58:19.55 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T08:58:19.532Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.24.0.8:47324", "grpc.code": "OK", "grpc.call_duration": "20.8773ms"} -[06d 01-09 08:58:21.57 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Received block [4] from buffer -[06e 01-09 08:58:21.57 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Validated block [4] in 1ms -[06f 01-09 08:58:21.60 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Committed block [4] with 1 transaction(s) in 26ms (state_validation=0ms block_commit=13ms state_commit=5ms) -[070 01-09 08:58:22.31 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][a126cd3f] Entry chaincode: name:"exp02" -[071 01-09 08:58:22.31 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][a126cd3f] Exit chaincode: name:"exp02" (3ms) -[072 01-09 08:58:22.32 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T08:58:22.315Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.24.0.8:47344", "grpc.code": "OK", "grpc.call_duration": "5.3579ms"} -[073 01-09 08:58:24.16 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Received block [5] from buffer -[074 01-09 08:58:24.16 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Validated block [5] in 3ms -[075 01-09 08:58:24.21 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Committed block [5] with 1 transaction(s) in 51ms (state_validation=12ms block_commit=27ms state_commit=5ms) -[076 01-09 08:58:24.49 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][d8b42fdf] Entry chaincode: name:"exp02" -[077 01-09 08:58:24.50 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][d8b42fdf] Exit chaincode: name:"exp02" (2ms) -[078 01-09 08:58:24.50 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T08:58:24.498Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.24.0.8:47348", "grpc.code": "OK", "grpc.call_duration": "4.7383ms"} -[079 01-09 08:58:25.11 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][f7cf4266] Entry chaincode: name:"lscc" -[07a 01-09 08:58:25.11 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][f7cf4266] Exit chaincode: name:"lscc" (2ms) -[07b 01-09 08:58:25.11 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T08:58:25.11Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.24.0.8:47354", "grpc.code": "OK", "grpc.call_duration": "3.9231ms"} -[07c 01-09 08:58:25.35 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][b09cc223] Entry chaincode: name:"lscc" -[07d 01-09 08:58:25.35 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][b09cc223] Exit chaincode: name:"lscc" (1ms) -[07e 01-09 08:58:25.35 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T08:58:25.351Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.24.0.8:47358", "grpc.code": "OK", "grpc.call_duration": "4.3327ms"} -[07f 01-09 08:58:25.59 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][ade79297] Entry chaincode: name:"lscc" -[080 01-09 08:58:25.59 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][ade79297] Exit chaincode: name:"lscc" (3ms) -[081 01-09 08:58:25.59 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T08:58:25.593Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.24.0.8:47362", "grpc.code": "OK", "grpc.call_duration": "4.3485ms"} -[082 01-09 08:58:25.77 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][32eb5bbc] Entry chaincode: name:"lscc" -[083 01-09 08:58:25.77 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][32eb5bbc] Exit chaincode: name:"lscc" (1ms) -[084 01-09 08:58:25.77 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T08:58:25.769Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.24.0.8:47366", "grpc.code": "OK", "grpc.call_duration": "2.9624ms"} -[085 01-09 08:58:25.95 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][19563660] Entry chaincode: name:"lscc" -[086 01-09 08:58:25.96 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][19563660] Exit chaincode: name:"lscc" (3ms) -[087 01-09 08:58:25.96 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T08:58:25.958Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.24.0.8:47372", "grpc.code": "OK", "grpc.call_duration": "5.6599ms"} -[088 01-09 08:58:26.46 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][050705be] Entry chaincode: name:"qscc" -[089 01-09 08:58:26.46 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][050705be] Exit chaincode: name:"qscc" (1ms) -[08a 01-09 08:58:26.46 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T08:58:26.466Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.24.0.8:47376", "grpc.code": "OK", "grpc.call_duration": "2.7496ms"} -[08b 01-09 08:58:26.69 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][6a279e36] Entry chaincode: name:"qscc" -[08c 01-09 08:58:26.70 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][6a279e36] Exit chaincode: name:"qscc" (3ms) -[08d 01-09 08:58:26.70 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T08:58:26.697Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.24.0.8:47380", "grpc.code": "OK", "grpc.call_duration": "5.4929ms"} -[08e 01-09 08:58:27.26 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][2e9b163d] Entry chaincode: name:"cscc" -[08f 01-09 08:58:27.26 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][2e9b163d] Exit chaincode: name:"cscc" (1ms) -[090 01-09 08:58:27.26 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T08:58:27.26Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.24.0.8:47384", "grpc.code": "OK", "grpc.call_duration": "3.1536ms"} -[091 01-09 08:58:28.59 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][7fde74c7] Entry chaincode: name:"cscc" -[092 01-09 08:58:28.60 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][7fde74c7] Exit chaincode: name:"cscc" (1ms) -[093 01-09 08:58:28.60 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T08:58:28.598Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.24.0.8:47388", "grpc.code": "OK", "grpc.call_duration": "2.2332ms"} -[094 01-09 08:58:28.83 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][7930bb39] Entry chaincode: name:"cscc" -[095 01-09 08:58:28.84 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][7930bb39] Exit chaincode: name:"cscc" (1ms) -[096 01-09 08:58:28.84 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T08:58:28.838Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.24.0.8:47392", "grpc.code": "OK", "grpc.call_duration": "3.7664ms"} -[097 01-09 08:58:38.35 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Received block [6] from buffer -[098 01-09 08:58:38.36 UTC] [%{longpkg}] %{callpath} -> WARN De-duplicating identity [Org1MSP0270edfed53a78d7d3c66dc25737f57f956e48ef69dca5ecc91c26679dd4eff3] at index 2 in signature set -[099 01-09 08:58:38.36 UTC] [%{longpkg}] %{callpath} -> WARN De-duplicating identity [Org1MSP0270edfed53a78d7d3c66dc25737f57f956e48ef69dca5ecc91c26679dd4eff3] at index 2 in signature set -[09a 01-09 08:58:38.48 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T08:58:38.482Z", "grpc.service": "gossip.Gossip", "grpc.method": "Ping", "grpc.request_deadline": "2019-01-09T08:58:40.481Z", "grpc.peer_address": "172.24.0.3:55726", "grpc.peer_subject": "CN=peer0.org2.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "130.7µs"} -[09b 01-09 08:58:38.48 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T08:58:38.487Z", "grpc.service": "gossip.Gossip", "grpc.method": "Ping", "grpc.request_deadline": "2019-01-09T08:58:40.485Z", "grpc.peer_address": "172.24.0.4:37124", "grpc.peer_subject": "CN=peer1.org1.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "168.9µs"} -[09c 01-09 08:58:38.49 UTC] [%{longpkg}] %{callpath} -> INFO Joining gossip network of channel businesschannel with 3 organizations -[09d 01-09 08:58:38.49 UTC] [%{longpkg}] %{callpath} -> INFO Learning about the configured anchor peers of Org1MSP for channel businesschannel : [{peer0.org1.example.com 7051}] -[09e 01-09 08:58:38.49 UTC] [%{longpkg}] %{callpath} -> INFO Anchor peer with same endpoint, skipping connecting to myself -[09f 01-09 08:58:38.49 UTC] [%{longpkg}] %{callpath} -> INFO Learning about the configured anchor peers of Org2MSP for channel businesschannel : [{peer0.org2.example.com 7051}] -[0a0 01-09 08:58:38.49 UTC] [%{longpkg}] %{callpath} -> INFO No configured anchor peers of Org3MSP for channel businesschannel to learn about -[0a1 01-09 08:58:38.50 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T08:58:38.507Z", "grpc.service": "gossip.Gossip", "grpc.method": "Ping", "grpc.request_deadline": "2019-01-09T08:58:40.507Z", "grpc.peer_address": "172.24.0.5:59212", "grpc.peer_subject": "CN=peer1.org2.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "206.6µs"} -[0a2 01-09 08:58:38.51 UTC] [%{longpkg}] %{callpath} -> WARN peer1.org1.example.com:7051, PKIid:0be1e243940145f5e3af2c865fe319e551a303f3013dd34afa09d7f05c0653ca isn't responsive: rpc error: code = Unavailable desc = transport is closing -[0a3 01-09 08:58:38.51 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T08:58:38.49Z", "grpc.service": "gossip.Gossip", "grpc.method": "GossipStream", "grpc.request_deadline": "2019-01-09T08:58:48.49Z", "grpc.peer_address": "172.24.0.4:37124", "grpc.peer_subject": "CN=peer1.org1.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "27.8213ms"} -[0a4 01-09 08:58:38.52 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T08:56:58.562Z", "grpc.service": "gossip.Gossip", "grpc.method": "GossipStream", "grpc.peer_address": "172.24.0.4:36904", "grpc.peer_subject": "CN=peer1.org1.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "1m40.0650251s"} -[0a5 01-09 08:58:38.52 UTC] [%{longpkg}] %{callpath} -> WARN Entering [0be1e243940145f5e3af2c865fe319e551a303f3013dd34afa09d7f05c0653ca] -[0a6 01-09 08:58:38.52 UTC] [%{longpkg}] %{callpath} -> WARN Closing connection to Endpoint: peer1.org1.example.com:7051, InternalEndpoint: peer1.org1.example.com:7051, PKI-ID: 0be1e243940145f5e3af2c865fe319e551a303f3013dd34afa09d7f05c0653ca, Metadata: -[0a7 01-09 08:58:38.53 UTC] [%{longpkg}] %{callpath} -> WARN Exiting -[0a8 01-09 08:58:38.53 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T08:56:58.939Z", "grpc.service": "gossip.Gossip", "grpc.method": "GossipStream", "grpc.peer_address": "172.24.0.3:55516", "grpc.peer_subject": "CN=peer0.org2.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "1m39.6991747s"} -[0a9 01-09 08:58:38.53 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T08:58:38.504Z", "grpc.service": "gossip.Gossip", "grpc.method": "GossipStream", "grpc.request_deadline": "2019-01-09T08:58:48.504Z", "grpc.peer_address": "172.24.0.3:55726", "grpc.peer_subject": "CN=peer0.org2.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "28.7302ms"} -[0aa 01-09 08:58:38.53 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Validated block [6] in 179ms -[0ab 01-09 08:58:38.54 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T08:56:58.868Z", "grpc.service": "gossip.Gossip", "grpc.method": "GossipStream", "grpc.peer_address": "172.24.0.5:58996", "grpc.peer_subject": "CN=peer1.org2.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "1m39.783359s"} -[0ac 01-09 08:58:38.54 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T08:58:38.534Z", "grpc.service": "gossip.Gossip", "grpc.method": "GossipStream", "grpc.request_deadline": "2019-01-09T08:58:48.533Z", "grpc.peer_address": "172.24.0.5:59212", "grpc.peer_subject": "CN=peer1.org2.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "11.016ms"} -[0ad 01-09 08:58:38.57 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Committed block [6] with 1 transaction(s) in 31ms (state_validation=1ms block_commit=23ms state_commit=3ms) -[0ae 01-09 08:58:38.93 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T08:58:38.939Z", "grpc.service": "gossip.Gossip", "grpc.method": "Ping", "grpc.request_deadline": "2019-01-09T08:58:40.939Z", "grpc.peer_address": "172.24.0.4:37142", "grpc.peer_subject": "CN=peer1.org1.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "169.4µs"} -[0af 01-09 08:58:48.60 UTC] [%{longpkg}] %{callpath} -> INFO [][72b60ef6] Entry chaincode: name:"cscc" -[0b0 01-09 08:58:48.60 UTC] [%{longpkg}] %{callpath} -> INFO [][72b60ef6] Exit chaincode: name:"cscc" (1ms) -[0b1 01-09 08:58:48.60 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T08:58:48.603Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.24.0.8:47494", "grpc.code": "OK", "grpc.call_duration": "2.1385ms"} -[0b2 01-09 08:58:49.73 UTC] [%{longpkg}] %{callpath} -> INFO [][eb0b7079] Entry chaincode: name:"qscc" -[0b3 01-09 08:58:49.73 UTC] [%{longpkg}] %{callpath} -> INFO [][eb0b7079] Exit chaincode: name:"qscc" (2ms) -[0b4 01-09 08:58:49.73 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T08:58:49.734Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.24.0.8:47502", "grpc.code": "OK", "grpc.call_duration": "3.2676ms"} +[002 03-12 01:56:13.66 UTC] [%{longpkg}] %{callpath} -> INFO Initializing ledger mgmt +[003 03-12 01:56:13.66 UTC] [%{longpkg}] %{callpath} -> INFO Initializing ledger provider +[004 03-12 01:56:13.73 UTC] [%{longpkg}] %{callpath} -> INFO ledger provider Initialized +[005 03-12 01:56:13.79 UTC] [%{longpkg}] %{callpath} -> INFO ledger mgmt initialized +[006 03-12 01:56:13.79 UTC] [%{longpkg}] %{callpath} -> INFO Auto-detected peer address: 172.28.0.7:7051 +[007 03-12 01:56:13.79 UTC] [%{longpkg}] %{callpath} -> INFO Returning peer0.org1.example.com:7051 +[008 03-12 01:56:13.79 UTC] [%{longpkg}] %{callpath} -> INFO Auto-detected peer address: 172.28.0.7:7051 +[009 03-12 01:56:13.79 UTC] [%{longpkg}] %{callpath} -> INFO Returning peer0.org1.example.com:7051 +[00a 03-12 01:56:13.82 UTC] [%{longpkg}] %{callpath} -> INFO Starting peer with TLS enabled +[00b 03-12 01:56:13.83 UTC] [%{longpkg}] %{callpath} -> INFO Entering computeChaincodeEndpoint with peerHostname: peer0.org1.example.com +[00c 03-12 01:56:13.83 UTC] [%{longpkg}] %{callpath} -> INFO Exit with ccEndpoint: peer0.org1.example.com:7052 +[00d 03-12 01:56:13.85 UTC] [%{longpkg}] %{callpath} -> INFO system chaincode lscc(github.com/hyperledger/fabric/core/scc/lscc) registered +[00e 03-12 01:56:13.85 UTC] [%{longpkg}] %{callpath} -> INFO system chaincode cscc(github.com/hyperledger/fabric/core/scc/cscc) registered +[00f 03-12 01:56:13.85 UTC] [%{longpkg}] %{callpath} -> INFO system chaincode qscc(github.com/hyperledger/fabric/core/scc/qscc) registered +[010 03-12 01:56:13.85 UTC] [%{longpkg}] %{callpath} -> INFO system chaincode (+lifecycle,github.com/hyperledger/fabric/core/chaincode/lifecycle,true) disabled +[011 03-12 01:56:13.87 UTC] [%{longpkg}] %{callpath} -> INFO Initialize gossip with endpoint peer0.org1.example.com:7051 and bootstrap set [127.0.0.1:7051] +[012 03-12 01:56:13.88 UTC] [%{longpkg}] %{callpath} -> INFO Creating gossip service with self membership of Endpoint: peer0.org1.example.com:7051, InternalEndpoint: peer0.org1.example.com:7051, PKI-ID: 3d21b0bc142d8ddae3c27797c0c2bf16b05e0414b227484fdbfabf9859231106, Metadata: +[013 03-12 01:56:13.89 UTC] [%{longpkg}] %{callpath} -> INFO Gossip instance peer0.org1.example.com:7051 started +[014 03-12 01:56:13.91 UTC] [%{longpkg}] %{callpath} -> INFO system chaincode lscc/(github.com/hyperledger/fabric/core/scc/lscc) deployed +[015 03-12 01:56:13.91 UTC] [%{longpkg}] %{callpath} -> INFO Init CSCC +[016 03-12 01:56:13.91 UTC] [%{longpkg}] %{callpath} -> INFO system chaincode cscc/(github.com/hyperledger/fabric/core/scc/cscc) deployed +[017 03-12 01:56:13.92 UTC] [%{longpkg}] %{callpath} -> INFO Init QSCC +[018 03-12 01:56:13.92 UTC] [%{longpkg}] %{callpath} -> INFO system chaincode qscc/(github.com/hyperledger/fabric/core/scc/qscc) deployed +[019 03-12 01:56:13.92 UTC] [%{longpkg}] %{callpath} -> INFO system chaincode (+lifecycle,github.com/hyperledger/fabric/core/chaincode/lifecycle) disabled +[01a 03-12 01:56:13.92 UTC] [%{longpkg}] %{callpath} -> INFO Deployed system chaincodes +[01b 03-12 01:56:13.92 UTC] [%{longpkg}] %{callpath} -> INFO Created with config TLS: true, authCacheMaxSize: 1000, authCachePurgeRatio: 0.750000 +[01c 03-12 01:56:13.92 UTC] [%{longpkg}] %{callpath} -> INFO Discovery service activated +[01d 03-12 01:56:13.92 UTC] [%{longpkg}] %{callpath} -> INFO Starting peer with ID=[name:"peer0.org1.example.com" ], network ID=[dev], address=[peer0.org1.example.com:7051] +[01e 03-12 01:56:13.92 UTC] [%{longpkg}] %{callpath} -> INFO Started peer with ID=[name:"peer0.org1.example.com" ], network ID=[dev], address=[peer0.org1.example.com:7051] +[01f 03-12 01:56:15.02 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-03-12T01:56:15.022Z", "grpc.service": "gossip.Gossip", "grpc.method": "Ping", "grpc.request_deadline": "2019-03-12T01:56:17.021Z", "grpc.peer_address": "172.28.0.5:45012", "grpc.peer_subject": "CN=peer1.org1.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "255.4µs"} +[020 03-12 01:56:15.04 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-03-12T01:56:15.024Z", "grpc.service": "gossip.Gossip", "grpc.method": "GossipStream", "grpc.request_deadline": "2019-03-12T01:56:25.024Z", "grpc.peer_address": "172.28.0.5:45012", "grpc.peer_subject": "CN=peer1.org1.example.com,L=San Francisco,ST=California,C=US", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "18.1413ms"} +[021 03-12 01:56:15.06 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-03-12T01:56:15.06Z", "grpc.service": "gossip.Gossip", "grpc.method": "Ping", "grpc.request_deadline": "2019-03-12T01:56:17.059Z", "grpc.peer_address": "172.28.0.5:45014", "grpc.peer_subject": "CN=peer1.org1.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "348.5µs"} +[022 03-12 01:56:21.79 UTC] [%{longpkg}] %{callpath} -> INFO [][e966e0d6] Entry chaincode: name:"cscc" +[023 03-12 01:56:21.80 UTC] [%{longpkg}] %{callpath} -> INFO Creating ledger [businesschannel] with genesis block +[024 03-12 01:56:21.80 UTC] [%{longpkg}] %{callpath} -> INFO Getting block information from block storage +[025 03-12 01:56:21.83 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Committed block [0] with 1 transaction(s) in 20ms (state_validation=6ms block_commit=8ms state_commit=3ms) +[026 03-12 01:56:21.83 UTC] [%{longpkg}] %{callpath} -> INFO Created ledger [businesschannel] with genesis block +[027 03-12 01:56:21.84 UTC] [%{longpkg}] %{callpath} -> INFO Joining gossip network of channel businesschannel with 2 organizations +[028 03-12 01:56:21.84 UTC] [%{longpkg}] %{callpath} -> INFO No configured anchor peers of Org1MSP for channel businesschannel to learn about +[029 03-12 01:56:21.84 UTC] [%{longpkg}] %{callpath} -> INFO No configured anchor peers of Org2MSP for channel businesschannel to learn about +[02a 03-12 01:56:21.87 UTC] [%{longpkg}] %{callpath} -> INFO Updating metadata information, current ledger sequence is at = 0, next expected block is = 1 +[02b 03-12 01:56:21.87 UTC] [%{longpkg}] %{callpath} -> INFO system chaincode lscc/businesschannel(github.com/hyperledger/fabric/core/scc/lscc) deployed +[02c 03-12 01:56:21.87 UTC] [%{longpkg}] %{callpath} -> INFO Init CSCC +[02d 03-12 01:56:21.87 UTC] [%{longpkg}] %{callpath} -> INFO system chaincode cscc/businesschannel(github.com/hyperledger/fabric/core/scc/cscc) deployed +[02e 03-12 01:56:21.87 UTC] [%{longpkg}] %{callpath} -> INFO Init QSCC +[02f 03-12 01:56:21.87 UTC] [%{longpkg}] %{callpath} -> INFO system chaincode qscc/businesschannel(github.com/hyperledger/fabric/core/scc/qscc) deployed +[030 03-12 01:56:21.87 UTC] [%{longpkg}] %{callpath} -> INFO system chaincode (+lifecycle,github.com/hyperledger/fabric/core/chaincode/lifecycle) disabled +[031 03-12 01:56:21.87 UTC] [%{longpkg}] %{callpath} -> INFO [][e966e0d6] Exit chaincode: name:"cscc" (81ms) +[032 03-12 01:56:21.87 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-03-12T01:56:21.797Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.28.0.3:37332", "grpc.code": "OK", "grpc.call_duration": "82.3803ms"} +[033 03-12 01:56:23.27 UTC] [%{longpkg}] %{callpath} -> INFO [][84638576] Entry chaincode: name:"cscc" +[034 03-12 01:56:23.27 UTC] [%{longpkg}] %{callpath} -> INFO [][84638576] Exit chaincode: name:"cscc" (1ms) +[035 03-12 01:56:23.27 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-03-12T01:56:23.272Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.28.0.3:37340", "grpc.code": "OK", "grpc.call_duration": "2.2284ms"} +[036 03-12 01:56:24.32 UTC] [%{longpkg}] %{callpath} -> INFO [][6fedd1de] Entry chaincode: name:"qscc" +[037 03-12 01:56:24.32 UTC] [%{longpkg}] %{callpath} -> INFO [][6fedd1de] Exit chaincode: name:"qscc" (2ms) +[038 03-12 01:56:24.32 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-03-12T01:56:24.32Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.28.0.3:37348", "grpc.code": "OK", "grpc.call_duration": "2.7527ms"} +[039 03-12 01:56:26.84 UTC] [%{longpkg}] %{callpath} -> INFO Membership view has changed. peers went online: [[peer1.org1.example.com:7051]] , current view: [[peer1.org1.example.com:7051]] +[03a 03-12 01:56:27.87 UTC] [%{longpkg}] %{callpath} -> INFO 3d21b0bc142d8ddae3c27797c0c2bf16b05e0414b227484fdbfabf9859231106 : Becoming a leader +[03b 03-12 01:56:27.87 UTC] [%{longpkg}] %{callpath} -> INFO Elected as a leader, starting delivery service for channel businesschannel +[03c 03-12 01:56:27.90 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Received block [1] from buffer +[03d 03-12 01:56:27.91 UTC] [%{longpkg}] %{callpath} -> INFO Joining gossip network of channel businesschannel with 2 organizations +[03e 03-12 01:56:27.91 UTC] [%{longpkg}] %{callpath} -> INFO No configured anchor peers of Org2MSP for channel businesschannel to learn about +[03f 03-12 01:56:27.91 UTC] [%{longpkg}] %{callpath} -> INFO Learning about the configured anchor peers of Org1MSP for channel businesschannel : [{peer0.org1.example.com 7051}] +[040 03-12 01:56:27.91 UTC] [%{longpkg}] %{callpath} -> INFO Anchor peer with same endpoint, skipping connecting to myself +[041 03-12 01:56:27.93 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Validated block [1] in 29ms +[042 03-12 01:56:27.95 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Committed block [1] with 1 transaction(s) in 20ms (state_validation=1ms block_commit=9ms state_commit=6ms) +[043 03-12 01:56:27.95 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Received block [2] from buffer +[044 03-12 01:56:27.95 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-03-12T01:56:27.956Z", "grpc.service": "gossip.Gossip", "grpc.method": "Ping", "grpc.request_deadline": "2019-03-12T01:56:29.956Z", "grpc.peer_address": "172.28.0.5:45062", "grpc.peer_subject": "CN=peer1.org1.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "121.9µs"} +[045 03-12 01:56:27.96 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-03-12T01:56:15.066Z", "grpc.service": "gossip.Gossip", "grpc.method": "GossipStream", "grpc.peer_address": "172.28.0.5:45014", "grpc.peer_subject": "CN=peer1.org1.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "12.9290103s"} +[046 03-12 01:56:27.96 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-03-12T01:56:27.959Z", "grpc.service": "gossip.Gossip", "grpc.method": "GossipStream", "grpc.request_deadline": "2019-03-12T01:56:37.958Z", "grpc.peer_address": "172.28.0.5:45062", "grpc.peer_subject": "CN=peer1.org1.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "5.0605ms"} +[047 03-12 01:56:27.98 UTC] [%{longpkg}] %{callpath} -> INFO Joining gossip network of channel businesschannel with 2 organizations +[048 03-12 01:56:27.98 UTC] [%{longpkg}] %{callpath} -> INFO Learning about the configured anchor peers of Org2MSP for channel businesschannel : [{peer0.org2.example.com 7051}] +[049 03-12 01:56:27.98 UTC] [%{longpkg}] %{callpath} -> INFO Learning about the configured anchor peers of Org1MSP for channel businesschannel : [{peer0.org1.example.com 7051}] +[04a 03-12 01:56:27.98 UTC] [%{longpkg}] %{callpath} -> INFO Anchor peer with same endpoint, skipping connecting to myself +[04b 03-12 01:56:28.00 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Validated block [2] in 48ms +[04c 03-12 01:56:28.06 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Committed block [2] with 1 transaction(s) in 65ms (state_validation=14ms block_commit=26ms state_commit=21ms) +[04d 03-12 01:56:28.07 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-03-12T01:56:28.077Z", "grpc.service": "gossip.Gossip", "grpc.method": "Ping", "grpc.request_deadline": "2019-03-12T01:56:30.077Z", "grpc.peer_address": "172.28.0.5:45070", "grpc.peer_subject": "CN=peer1.org1.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "143.6µs"} +[04e 03-12 01:56:28.09 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-03-12T01:56:28.081Z", "grpc.service": "gossip.Gossip", "grpc.method": "GossipStream", "grpc.request_deadline": "2019-03-12T01:56:38.081Z", "grpc.peer_address": "172.28.0.5:45070", "grpc.peer_subject": "CN=peer1.org1.example.com,L=San Francisco,ST=California,C=US", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "9.7627ms"} +[04f 03-12 01:56:28.10 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-03-12T01:56:28.101Z", "grpc.service": "gossip.Gossip", "grpc.method": "Ping", "grpc.request_deadline": "2019-03-12T01:56:30.099Z", "grpc.peer_address": "172.28.0.5:45074", "grpc.peer_subject": "CN=peer1.org1.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "145.7µs"} +[050 03-12 01:56:28.44 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-03-12T01:56:28.44Z", "grpc.service": "gossip.Gossip", "grpc.method": "Ping", "grpc.request_deadline": "2019-03-12T01:56:30.44Z", "grpc.peer_address": "172.28.0.6:43766", "grpc.peer_subject": "CN=peer0.org2.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "123µs"} +[051 03-12 01:56:28.45 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-03-12T01:56:28.442Z", "grpc.service": "gossip.Gossip", "grpc.method": "GossipStream", "grpc.request_deadline": "2019-03-12T01:56:38.442Z", "grpc.peer_address": "172.28.0.6:43766", "grpc.peer_subject": "CN=peer0.org2.example.com,L=San Francisco,ST=California,C=US", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "16.2589ms"} +[052 03-12 01:56:28.47 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-03-12T01:56:28.473Z", "grpc.service": "gossip.Gossip", "grpc.method": "Ping", "grpc.request_deadline": "2019-03-12T01:56:30.472Z", "grpc.peer_address": "172.28.0.6:43768", "grpc.peer_subject": "CN=peer0.org2.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "127.1µs"} +[053 03-12 01:56:28.52 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-03-12T01:56:28.528Z", "grpc.service": "gossip.Gossip", "grpc.method": "Ping", "grpc.request_deadline": "2019-03-12T01:56:30.527Z", "grpc.peer_address": "172.28.0.6:43770", "grpc.peer_subject": "CN=peer0.org2.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "116.7µs"} +[054 03-12 01:56:28.53 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-03-12T01:56:28.475Z", "grpc.service": "gossip.Gossip", "grpc.method": "GossipStream", "grpc.peer_address": "172.28.0.6:43768", "grpc.peer_subject": "CN=peer0.org2.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "57.3832ms"} +[055 03-12 01:56:28.53 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-03-12T01:56:28.53Z", "grpc.service": "gossip.Gossip", "grpc.method": "GossipStream", "grpc.request_deadline": "2019-03-12T01:56:38.529Z", "grpc.peer_address": "172.28.0.6:43770", "grpc.peer_subject": "CN=peer0.org2.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "4.4206ms"} +[056 03-12 01:56:28.69 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-03-12T01:56:28.696Z", "grpc.service": "gossip.Gossip", "grpc.method": "Ping", "grpc.request_deadline": "2019-03-12T01:56:30.696Z", "grpc.peer_address": "172.28.0.4:44822", "grpc.peer_subject": "CN=peer1.org2.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "156.7µs"} +[057 03-12 01:56:28.71 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-03-12T01:56:28.703Z", "grpc.service": "gossip.Gossip", "grpc.method": "GossipStream", "grpc.request_deadline": "2019-03-12T01:56:38.702Z", "grpc.peer_address": "172.28.0.4:44822", "grpc.peer_subject": "CN=peer1.org2.example.com,L=San Francisco,ST=California,C=US", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "9.2954ms"} +[058 03-12 01:56:28.72 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-03-12T01:56:28.72Z", "grpc.service": "gossip.Gossip", "grpc.method": "Ping", "grpc.request_deadline": "2019-03-12T01:56:30.72Z", "grpc.peer_address": "172.28.0.4:44824", "grpc.peer_subject": "CN=peer1.org2.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "139.3µs"} +[059 03-12 01:56:28.78 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-03-12T01:56:28.787Z", "grpc.service": "gossip.Gossip", "grpc.method": "Ping", "grpc.request_deadline": "2019-03-12T01:56:30.787Z", "grpc.peer_address": "172.28.0.4:44828", "grpc.peer_subject": "CN=peer1.org2.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "125.7µs"} +[05a 03-12 01:56:28.81 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-03-12T01:56:28.728Z", "grpc.service": "gossip.Gossip", "grpc.method": "GossipStream", "grpc.peer_address": "172.28.0.4:44824", "grpc.peer_subject": "CN=peer1.org2.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "82.2139ms"} +[05b 03-12 01:56:28.81 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-03-12T01:56:28.806Z", "grpc.service": "gossip.Gossip", "grpc.method": "GossipStream", "grpc.request_deadline": "2019-03-12T01:56:38.805Z", "grpc.peer_address": "172.28.0.4:44828", "grpc.peer_subject": "CN=peer1.org2.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "5.1816ms"} +[05c 03-12 01:56:28.91 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-03-12T01:56:28.917Z", "grpc.service": "gossip.Gossip", "grpc.method": "Ping", "grpc.request_deadline": "2019-03-12T01:56:30.917Z", "grpc.peer_address": "172.28.0.4:44836", "grpc.peer_subject": "CN=peer1.org2.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "122.6µs"} +[05d 03-12 01:56:28.92 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-03-12T01:56:28.918Z", "grpc.service": "gossip.Gossip", "grpc.method": "GossipStream", "grpc.peer_address": "172.28.0.4:44836", "grpc.peer_subject": "CN=peer1.org2.example.com,L=San Francisco,ST=California,C=US", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "4.7494ms"} +[05e 03-12 01:56:29.90 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-03-12T01:56:29.904Z", "grpc.service": "gossip.Gossip", "grpc.method": "Ping", "grpc.request_deadline": "2019-03-12T01:56:31.902Z", "grpc.peer_address": "172.28.0.4:44838", "grpc.peer_subject": "CN=peer1.org2.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "134.4µs"} +[05f 03-12 01:56:29.96 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-03-12T01:56:29.928Z", "grpc.service": "gossip.Gossip", "grpc.method": "GossipStream", "grpc.peer_address": "172.28.0.4:44838", "grpc.peer_subject": "CN=peer1.org2.example.com,L=San Francisco,ST=California,C=US", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "35.0208ms"} +[060 03-12 01:56:29.97 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-03-12T01:56:29.975Z", "grpc.service": "gossip.Gossip", "grpc.method": "Ping", "grpc.request_deadline": "2019-03-12T01:56:31.975Z", "grpc.peer_address": "172.28.0.4:44842", "grpc.peer_subject": "CN=peer1.org2.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "120.9µs"} +[061 03-12 01:56:30.71 UTC] [%{longpkg}] %{callpath} -> INFO [][58608a6c] Entry chaincode: name:"lscc" +[062 03-12 01:56:30.72 UTC] [%{longpkg}] %{callpath} -> INFO Installed Chaincode [exp02] Version [1.0] to peer +[063 03-12 01:56:30.72 UTC] [%{longpkg}] %{callpath} -> INFO [][58608a6c] Exit chaincode: name:"lscc" (2ms) +[064 03-12 01:56:30.72 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-03-12T01:56:30.718Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.28.0.3:37416", "grpc.code": "OK", "grpc.call_duration": "3.5013ms"} +[065 03-12 01:56:31.84 UTC] [%{longpkg}] %{callpath} -> INFO Membership view has changed. peers went online: [[peer0.org2.example.com:7051 ] [peer1.org2.example.com:7051 ]] , current view: [[peer1.org1.example.com:7051] [peer0.org2.example.com:7051 ] [peer1.org2.example.com:7051 ]] +[066 03-12 01:56:33.64 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][b573dda2] Entry chaincode: name:"lscc" +[067 03-12 01:56:33.65 UTC] [%{longpkg}] %{callpath} -> INFO building chaincode with ldflagsOpt: '-ldflags "-linkmode external -extldflags '-static'"' +[068 03-12 01:57:11.23 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][b573dda2] Exit chaincode: name:"lscc" (37624ms) +[069 03-12 01:57:11.23 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-03-12T01:56:33.639Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.28.0.3:37440", "grpc.code": "OK", "grpc.call_duration": "37.6271953s"} +[06a 03-12 01:57:13.24 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Received block [3] from buffer +[06b 03-12 01:57:13.26 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Validated block [3] in 11ms +[06c 03-12 01:57:13.27 UTC] [%{longpkg}] %{callpath} -> INFO Channel [businesschannel]: Handling deploy or update of chaincode [exp02] +[06d 03-12 01:57:13.30 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Committed block [3] with 1 transaction(s) in 25ms (state_validation=3ms block_commit=14ms state_commit=3ms) +[06e 03-12 01:57:48.88 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][bc7522f9] Entry chaincode: name:"exp02" +[06f 03-12 01:57:48.88 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][bc7522f9] Exit chaincode: name:"exp02" (5ms) +[070 03-12 01:57:48.88 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-03-12T01:57:48.878Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.28.0.3:37512", "grpc.code": "OK", "grpc.call_duration": "8.0947ms"} +[071 03-12 01:57:50.86 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Received block [4] from buffer +[072 03-12 01:57:50.87 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Validated block [4] in 1ms +[073 03-12 01:57:50.90 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Committed block [4] with 1 transaction(s) in 26ms (state_validation=0ms block_commit=17ms state_commit=5ms) +[074 03-12 01:57:51.60 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][58e66202] Entry chaincode: name:"exp02" +[075 03-12 01:57:51.60 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][58e66202] Exit chaincode: name:"exp02" (2ms) +[076 03-12 01:57:51.60 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-03-12T01:57:51.602Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.28.0.3:37532", "grpc.code": "OK", "grpc.call_duration": "5.4381ms"} +[077 03-12 01:57:53.43 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Received block [5] from buffer +[078 03-12 01:57:53.45 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Validated block [5] in 19ms +[079 03-12 01:57:53.47 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Committed block [5] with 1 transaction(s) in 15ms (state_validation=1ms block_commit=10ms state_commit=2ms) +[07a 03-12 01:57:53.82 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][81207daf] Entry chaincode: name:"exp02" +[07b 03-12 01:57:53.82 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][81207daf] Exit chaincode: name:"exp02" (3ms) +[07c 03-12 01:57:53.82 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-03-12T01:57:53.823Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.28.0.3:37536", "grpc.code": "OK", "grpc.call_duration": "5.6449ms"} +[07d 03-12 01:57:54.27 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][14a3ea89] Entry chaincode: name:"lscc" +[07e 03-12 01:57:54.27 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][14a3ea89] Exit chaincode: name:"lscc" (1ms) +[07f 03-12 01:57:54.27 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-03-12T01:57:54.274Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.28.0.3:37540", "grpc.code": "OK", "grpc.call_duration": "3.8092ms"} +[080 03-12 01:57:54.41 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][959c1a31] Entry chaincode: name:"lscc" +[081 03-12 01:57:54.42 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][959c1a31] Exit chaincode: name:"lscc" (1ms) +[082 03-12 01:57:54.42 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-03-12T01:57:54.417Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.28.0.3:37544", "grpc.code": "OK", "grpc.call_duration": "3.9189ms"} +[083 03-12 01:57:54.57 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][44069c26] Entry chaincode: name:"lscc" +[084 03-12 01:57:54.58 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][44069c26] Exit chaincode: name:"lscc" (3ms) +[085 03-12 01:57:54.58 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-03-12T01:57:54.578Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.28.0.3:37548", "grpc.code": "OK", "grpc.call_duration": "5.7204ms"} +[086 03-12 01:57:54.74 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][c09318f4] Entry chaincode: name:"lscc" +[087 03-12 01:57:54.75 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][c09318f4] Exit chaincode: name:"lscc" (1ms) +[088 03-12 01:57:54.75 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-03-12T01:57:54.747Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.28.0.3:37554", "grpc.code": "OK", "grpc.call_duration": "3.153ms"} +[089 03-12 01:57:54.90 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][87d8c6a1] Entry chaincode: name:"lscc" +[08a 03-12 01:57:54.90 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][87d8c6a1] Exit chaincode: name:"lscc" (3ms) +[08b 03-12 01:57:54.90 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-03-12T01:57:54.903Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.28.0.3:37558", "grpc.code": "OK", "grpc.call_duration": "5.5093ms"} +[08c 03-12 01:57:55.33 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][de3b862c] Entry chaincode: name:"qscc" +[08d 03-12 01:57:55.33 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][de3b862c] Exit chaincode: name:"qscc" (2ms) +[08e 03-12 01:57:55.33 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-03-12T01:57:55.33Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.28.0.3:37562", "grpc.code": "OK", "grpc.call_duration": "3.8585ms"} +[08f 03-12 01:57:55.52 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][ec4bb5ce] Entry chaincode: name:"qscc" +[090 03-12 01:57:55.52 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][ec4bb5ce] Exit chaincode: name:"qscc" (2ms) +[091 03-12 01:57:55.52 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-03-12T01:57:55.519Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.28.0.3:37566", "grpc.code": "OK", "grpc.call_duration": "4.6586ms"} +[092 03-12 01:57:55.95 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][55b9c017] Entry chaincode: name:"cscc" +[093 03-12 01:57:55.95 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][55b9c017] Exit chaincode: name:"cscc" (1ms) +[094 03-12 01:57:55.95 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-03-12T01:57:55.956Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.28.0.3:37572", "grpc.code": "OK", "grpc.call_duration": "2.5838ms"} +[095 03-12 01:57:56.13 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][47e0dba7] Entry chaincode: name:"cscc" +[096 03-12 01:57:56.13 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][47e0dba7] Exit chaincode: name:"cscc" (0ms) +[097 03-12 01:57:56.13 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-03-12T01:57:56.131Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.28.0.3:37576", "grpc.code": "OK", "grpc.call_duration": "3.1002ms"} +[098 03-12 01:57:56.28 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][be88e672] Entry chaincode: name:"cscc" +[099 03-12 01:57:56.29 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][be88e672] Exit chaincode: name:"cscc" (2ms) +[09a 03-12 01:57:56.29 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-03-12T01:57:56.286Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.28.0.3:37580", "grpc.code": "OK", "grpc.call_duration": "4.2644ms"} +[09b 03-12 01:58:05.15 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Received block [6] from buffer +[09c 03-12 01:58:05.15 UTC] [%{longpkg}] %{callpath} -> WARN De-duplicating identity [Org1MSP0270edfed53a78d7d3c66dc25737f57f956e48ef69dca5ecc91c26679dd4eff3] at index 2 in signature set +[09d 03-12 01:58:05.16 UTC] [%{longpkg}] %{callpath} -> WARN De-duplicating identity [Org1MSP0270edfed53a78d7d3c66dc25737f57f956e48ef69dca5ecc91c26679dd4eff3] at index 2 in signature set +[09e 03-12 01:58:05.24 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-03-12T01:58:05.242Z", "grpc.service": "gossip.Gossip", "grpc.method": "Ping", "grpc.request_deadline": "2019-03-12T01:58:07.239Z", "grpc.peer_address": "172.28.0.6:43998", "grpc.peer_subject": "CN=peer0.org2.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "123.1µs"} +[09f 03-12 01:58:05.24 UTC] [%{longpkg}] %{callpath} -> INFO Joining gossip network of channel businesschannel with 3 organizations +[0a0 03-12 01:58:05.24 UTC] [%{longpkg}] %{callpath} -> INFO No configured anchor peers of Org3MSP for channel businesschannel to learn about +[0a1 03-12 01:58:05.25 UTC] [%{longpkg}] %{callpath} -> INFO Learning about the configured anchor peers of Org1MSP for channel businesschannel : [{peer0.org1.example.com 7051}] +[0a2 03-12 01:58:05.25 UTC] [%{longpkg}] %{callpath} -> INFO Anchor peer with same endpoint, skipping connecting to myself +[0a3 03-12 01:58:05.25 UTC] [%{longpkg}] %{callpath} -> INFO Learning about the configured anchor peers of Org2MSP for channel businesschannel : [{peer0.org2.example.com 7051}] +[0a4 03-12 01:58:05.26 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-03-12T01:58:05.263Z", "grpc.service": "gossip.Gossip", "grpc.method": "Ping", "grpc.request_deadline": "2019-03-12T01:58:07.261Z", "grpc.peer_address": "172.28.0.4:45048", "grpc.peer_subject": "CN=peer1.org2.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "170.1µs"} +[0a5 03-12 01:58:05.28 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-03-12T01:58:05.281Z", "grpc.service": "gossip.Gossip", "grpc.method": "Ping", "grpc.request_deadline": "2019-03-12T01:58:07.278Z", "grpc.peer_address": "172.28.0.5:45320", "grpc.peer_subject": "CN=peer1.org1.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "502.9µs"} +[0a6 03-12 01:58:05.28 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-03-12T01:58:05.267Z", "grpc.service": "gossip.Gossip", "grpc.method": "GossipStream", "grpc.request_deadline": "2019-03-12T01:58:15.266Z", "grpc.peer_address": "172.28.0.4:45048", "grpc.peer_subject": "CN=peer1.org2.example.com,L=San Francisco,ST=California,C=US", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "17.0303ms"} +[0a7 03-12 01:58:05.28 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-03-12T01:56:29.981Z", "grpc.service": "gossip.Gossip", "grpc.method": "GossipStream", "grpc.peer_address": "172.28.0.4:44842", "grpc.peer_subject": "CN=peer1.org2.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "1m35.40652s"} +[0a8 03-12 01:58:05.30 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Validated block [6] in 151ms +[0a9 03-12 01:58:05.30 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-03-12T01:58:05.258Z", "grpc.service": "gossip.Gossip", "grpc.method": "GossipStream", "grpc.request_deadline": "2019-03-12T01:58:15.257Z", "grpc.peer_address": "172.28.0.6:43998", "grpc.peer_subject": "CN=peer0.org2.example.com,L=San Francisco,ST=California,C=US", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "49.408ms"} +[0aa 03-12 01:58:05.32 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-03-12T01:58:05.322Z", "grpc.service": "gossip.Gossip", "grpc.method": "Ping", "grpc.request_deadline": "2019-03-12T01:58:07.322Z", "grpc.peer_address": "172.28.0.6:44010", "grpc.peer_subject": "CN=peer0.org2.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "302.9µs"} +[0ab 03-12 01:58:05.33 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-03-12T01:56:28.115Z", "grpc.service": "gossip.Gossip", "grpc.method": "GossipStream", "grpc.peer_address": "172.28.0.5:45074", "grpc.peer_subject": "CN=peer1.org1.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "1m37.3211954s"} +[0ac 03-12 01:58:05.33 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-03-12T01:58:05.289Z", "grpc.service": "gossip.Gossip", "grpc.method": "GossipStream", "grpc.request_deadline": "2019-03-12T01:58:15.288Z", "grpc.peer_address": "172.28.0.5:45320", "grpc.peer_subject": "CN=peer1.org1.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "45.9467ms"} +[0ad 03-12 01:58:05.34 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Committed block [6] with 1 transaction(s) in 46ms (state_validation=21ms block_commit=16ms state_commit=3ms) +[0ae 03-12 01:58:05.37 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-03-12T01:58:05.36Z", "grpc.service": "gossip.Gossip", "grpc.method": "GossipStream", "grpc.peer_address": "172.28.0.6:44010", "grpc.peer_subject": "CN=peer0.org2.example.com,L=San Francisco,ST=California,C=US", "error": "EOF", "grpc.code": "Unknown", "grpc.call_duration": "16.0472ms"} +[0af 03-12 01:58:15.08 UTC] [%{longpkg}] %{callpath} -> INFO [][b2f22246] Entry chaincode: name:"cscc" +[0b0 03-12 01:58:15.08 UTC] [%{longpkg}] %{callpath} -> INFO [][b2f22246] Exit chaincode: name:"cscc" (1ms) +[0b1 03-12 01:58:15.08 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-03-12T01:58:15.082Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.28.0.3:37676", "grpc.code": "OK", "grpc.call_duration": "2.6162ms"} +[0b2 03-12 01:58:15.88 UTC] [%{longpkg}] %{callpath} -> INFO [][16d4ac83] Entry chaincode: name:"qscc" +[0b3 03-12 01:58:15.88 UTC] [%{longpkg}] %{callpath} -> INFO [][16d4ac83] Exit chaincode: name:"qscc" (2ms) +[0b4 03-12 01:58:15.88 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-03-12T01:58:15.883Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.28.0.3:37684", "grpc.code": "OK", "grpc.call_duration": "3.3635ms"}