diff --git a/hyperledger_fabric/README.md b/hyperledger_fabric/README.md index a4be9ec5..51dd193d 100644 --- a/hyperledger_fabric/README.md +++ b/hyperledger_fabric/README.md @@ -51,6 +51,8 @@ The following command will run the entire process (start a fabric network, creat $ make test # Test with default fabric solo mode ``` +[Prometheus](https://prometheus.io) dashboard listens at [http://localhost:9090](http://localhost:9090) to track the network statistics. + ### Test with more modes ```bash diff --git a/hyperledger_fabric/latest/base-solo.yaml b/hyperledger_fabric/latest/base-solo.yaml index 63503cfd..dc6e9564 100644 --- a/hyperledger_fabric/latest/base-solo.yaml +++ b/hyperledger_fabric/latest/base-solo.yaml @@ -53,6 +53,7 @@ services: hostname: orderer0.example.com ports: - "7050:7050" + - "8443:8443" volumes: - ./crypto-config/ordererOrganizations/example.com/orderers/orderer0.example.com/msp:/var/hyperledger/orderer/msp - ./crypto-config/ordererOrganizations/example.com/orderers/orderer0.example.com/tls/:/var/hyperledger/orderer/tls @@ -76,9 +77,10 @@ services: - ./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 ports: - - 7051:7051 - - 7052:7052 - - 7053:7053 + - "7051:7051" + - "7052:7052" + - "7053:7053" + - "9443:9443" peer1.org1.example.com: extends: @@ -97,9 +99,9 @@ services: - ./crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/msp:/etc/hyperledger/fabric/msp - ./crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/tls:/etc/hyperledger/fabric/tls ports: - - 8051:7051 - - 8052:7052 - - 8053:7053 + - "8051:7051" + - "8052:7052" + - "8053:7053" peer0.org2.example.com: extends: @@ -118,9 +120,9 @@ services: - ./crypto-config/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/msp:/etc/hyperledger/fabric/msp - ./crypto-config/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/tls:/etc/hyperledger/fabric/tls ports: - - 9051:7051 - - 9052:7052 - - 9053:7053 + - "9051:7051" + - "9052:7052" + - "9053:7053" peer1.org2.example.com: extends: @@ -139,9 +141,9 @@ services: - ./crypto-config/peerOrganizations/org2.example.com/peers/peer1.org2.example.com/msp:/etc/hyperledger/fabric/msp - ./crypto-config/peerOrganizations/org2.example.com/peers/peer1.org2.example.com/tls:/etc/hyperledger/fabric/tls ports: - - 10051:7051 - - 10052:7052 - - 10053:7053 + - "10051:7051" + - "10052:7052" + - "10053:7053" peer0.org3.example.com: extends: @@ -160,9 +162,9 @@ services: - ./crypto-config/peerOrganizations/org3.example.com/peers/peer0.org3.example.com/msp:/etc/hyperledger/fabric/msp - ./crypto-config/peerOrganizations/org3.example.com/peers/peer0.org3.example.com/tls:/etc/hyperledger/fabric/tls ports: - - 11051:7051 - - 11052:7052 - - 11053:7053 + - "11051:7051" + - "11052:7052" + - "11053:7053" cli: # client node extends: @@ -178,6 +180,15 @@ services: - ./solo/channel-artifacts:/tmp/channel-artifacts - ./examples:/opt/gopath/src/examples + prometheus: # prometheus will pull metrics from fabric + extends: + file: base.yaml + service: prometheus + container_name: prometheus + hostname: prometheus + ports: + - "9090:9090" + #deprecated event-listener: extends: diff --git a/hyperledger_fabric/latest/base.yaml b/hyperledger_fabric/latest/base.yaml index 546543a2..bc6f85bc 100644 --- a/hyperledger_fabric/latest/base.yaml +++ b/hyperledger_fabric/latest/base.yaml @@ -31,8 +31,8 @@ services: network_mode: ${NETWORK} # Default config can be found at https://github.com/hyperledger/fabric/blob/master/orderer/common/localconfig/config.go environment: - - ORDERER_GENERAL_LOGLEVEL=INFO # default: INFO - - ORDERER_GENERAL_LOGFORMAT=%{color}[%{id:03x} %{time:01-02 15:04:05.00 MST}] [%{longpkg}] %{callpath} -> %{level:.4s}%{color:reset} %{message} + - FABRIC_LOGGING_SPEC=INFO # default: INFO + - FABRIC_LOGGING_FORMAT=%{color}[%{id:03x} %{time:01-02 15:04:05.00 MST}] [%{longpkg}] %{callpath} -> %{level:.4s}%{color:reset} %{message} - ORDERER_GENERAL_LISTENADDRESS=0.0.0.0 # default: 127.0.0.1 - ORDERER_GENERAL_GENESISMETHOD=file # default: provisional - ORDERER_GENERAL_GENESISFILE=/var/hyperledger/orderer/orderer.genesis.block @@ -44,16 +44,19 @@ services: - ORDERER_GENERAL_MAXMESSAGECOUNT=10 - ORDERER_GENERAL_MAXWINDOWSIZE=1000 - ORDERER_GENERAL_LISTENPORT=7050 + - ORDERER_OPERATIONS_LISTENADDRESS=0.0.0.0:8443 # operation RESTful API + - ORDERER_METRICS_PROVIDER=prometheus # prometheus will pull metrics from orderer via /metrics RESTful API #- ORDERER_RAMLEDGER_HISTORY_SIZE=100 #only useful when use ram ledger # enabled TLS - ORDERER_GENERAL_TLS_ENABLED=true # default: false - ORDERER_GENERAL_TLS_PRIVATEKEY=/var/hyperledger/orderer/tls/server.key - ORDERER_GENERAL_TLS_CERTIFICATE=/var/hyperledger/orderer/tls/server.crt - ORDERER_GENERAL_TLS_ROOTCAS=[/var/hyperledger/orderer/tls/ca.crt] - volumes: - - $GOPATH/src/github.com/hyperledger/fabric:/go/src/github.com/hyperledger/fabric + #volumes: + #- $GOPATH/src/github.com/hyperledger/fabric:/go/src/github.com/hyperledger/fabric expose: - - "7050" # + - "7050" # gRPC + - "8443" # Operation REST #command: bash -c 'bash /tmp/orderer_build.sh; orderer start' # use this if to debug orderer command: orderer start @@ -62,13 +65,15 @@ services: restart: always network_mode: ${NETWORK} environment: - - CORE_LOGGING_LEVEL=INFO + - FABRIC_LOGGING_SPEC=INFO + - FABRIC_LOGGING_FORMAT=%{color}[%{id:03x} %{time:01-02 15:04:05.00 MST}] [%{longpkg}] %{callpath} -> %{level:.4s}%{color:reset} %{message} - CORE_PEER_ADDRESSAUTODETECT=false - - CORE_LOGGING_FORMAT=%{color}[%{id:03x} %{time:01-02 15:04:05.00 MST}] [%{longpkg}] %{callpath} -> %{level:.4s}%{color:reset} %{message} - CORE_VM_DOCKER_HOSTCONFIG_NETWORKMODE=${NETWORK} # uncomment this to use specific network - CORE_PEER_GOSSIP_USELEADERELECTION=true - CORE_PEER_GOSSIP_ORGLEADER=false # whether this node is the org leader, default to false - CORE_PEER_GOSSIP_EXTERNALENDPOINT=0.0.0.0:7051 # change to external addr for peers in other orgs + - CORE_OPERATIONS_LISTENADDRESS=0.0.0.0:9443 # operation RESTful API + - CORE_METRICS_PROVIDER=prometheus # prometheus will pull metrics from fabric via /metrics RESTful API - CORE_PEER_PROFILE_ENABLED=false - CORE_PEER_TLS_ENABLED=true - CORE_PEER_TLS_CERT_FILE=/etc/hyperledger/fabric/tls/server.crt @@ -77,13 +82,12 @@ services: - CORE_CHIANCODE_LOGGING_LEVEL=DEBUG - CORE_CHIANCODE_LOGGING_FORMAT=%{color}[%{id:03x} %{time:01-02 15:04:05.00 MST}] [%{longpkg}] %{callpath} -> %{level:.4s}%{color:reset} %{message} volumes: - - $GOPATH/src/github.com/hyperledger/fabric:/go/src/github.com/hyperledger/fabric + #- $GOPATH/src/github.com/hyperledger/fabric:/go/src/github.com/hyperledger/fabric # docker.sock is mapped as the default CORE_VM_ENDPOINT - /var/run/docker.sock:/var/run/docker.sock expose: - - "7051" # Grpc - - "7052" # Peer CLI - - "7053" # Peer Event + - "7051" # gRPC + - "9443" # Operation REST #command: bash -c 'bash /tmp/peer_build.sh; peer node start' command: peer node start @@ -93,13 +97,42 @@ services: network_mode: ${NETWORK} tty: true environment: - - CORE_LOGGING_LEVEL=DEBUG - - CORE_LOGGING_FORMAT=%{color}[%{id:03x} %{time:01-02 15:04:05.00 MST}] [%{module}] %{shortfunc} -> %{level:.4s}%{color:reset} %{message} + - FABRIC_LOGGING_SPEC=DEBUG + - FABRIC_LOGGING_FORMAT=%{color}[%{id:03x} %{time:01-02 15:04:05.00 MST}] [%{module}] %{shortfunc} -> %{level:.4s}%{color:reset} %{message} - CORE_PEER_TLS_ENABLED=true # to enable TLS, change to true - ORDERER_CA=/etc/hyperledger/fabric/crypto-config/ordererOrganizations/example.com/orderers/orderer0.example.com/msp/tlscacerts/tlsca.example.com-cert.pem working_dir: /opt/gopath/src/github.com/hyperledger/fabric/peer command: bash -c 'cd /tmp; source scripts/func.sh; while true; do sleep 20170504; done' + prometheus: # prometheus will pull metrics from fabric + image: prom/prometheus:v2.6.0 + restart: always + network_mode: ${NETWORK} + tty: true + volumes: + - ./prometheus.yml:/etc/prometheus/prometheus.yml + + #deprecated + event-listener: + extends: + file: base.yaml + service: event-listener-base + container_name: fabric-event-listener + hostname: fabric-event-listener + environment: + - CORE_PEER_ADDRESS=peer0.org1.example.com:7051 # default to operate on peer0.org1 + - CORE_PEER_LOCALMSPID=Org1MSP + - CORE_PEER_TLS_CERT_FILE=/etc/hyperledger/fabric/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/tls/server.crt + - CORE_PEER_TLS_KEY_FILE=/etc/hyperledger/fabric/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/tls/server.key + - CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/tls/ca.crt + - CORE_PEER_MSPCONFIGPATH=/etc/hyperledger/fabric/crypto-config/peerOrganizations/org1.example.com/peers/peer0.Org1.example.com/msp + volumes: + - ./scripts:/tmp/scripts + - ./crypto-config.yaml:/etc/hyperledger/fabric/crypto-config.yaml + - ./crypto-config:/etc/hyperledger/fabric/crypto-config + - ./solo/configtx.yaml:/etc/hyperledger/fabric/configtx.yaml + - ./solo/channel-artifacts:/tmp/channel-artifacts + - ./examples:/opt/gopath/src/examples #deprecated event-listener-base: image: yeasy/hyperledger-fabric:${FABRIC_IMG_TAG} diff --git a/hyperledger_fabric/latest/docker-compose-2orgs-4peers-solo.yaml b/hyperledger_fabric/latest/docker-compose-2orgs-4peers-solo.yaml index 460168e9..082fb4c1 100644 --- a/hyperledger_fabric/latest/docker-compose-2orgs-4peers-solo.yaml +++ b/hyperledger_fabric/latest/docker-compose-2orgs-4peers-solo.yaml @@ -56,6 +56,17 @@ services: depends_on: - orderer0.example.com + prometheus: + extends: + file: base-solo.yaml + service: prometheus + depends_on: + - orderer0.example.com + - peer0.org1.example.com + - peer1.org1.example.com + - peer0.org2.example.com + - peer1.org2.example.com + #networks: # default: # external: diff --git a/hyperledger_fabric/latest/prometheus.yml b/hyperledger_fabric/latest/prometheus.yml new file mode 100644 index 00000000..2efaca40 --- /dev/null +++ b/hyperledger_fabric/latest/prometheus.yml @@ -0,0 +1,45 @@ +# my global config +global: + scrape_interval: 15s # Set the scrape interval to every 15 seconds. Default is every 1 minute. + evaluation_interval: 15s # Evaluate rules every 15 seconds. The default is every 1 minute. + # scrape_timeout is set to the global default (10s). + +# Alertmanager configuration +alerting: + alertmanagers: + - static_configs: + - targets: + # - alertmanager:9093 + +# Load rules once and periodically evaluate them according to the global 'evaluation_interval'. +rule_files: + # - "first_rules.yml" + # - "second_rules.yml" + +# A scrape configuration containing exactly one endpoint to scrape: +# Here it's Prometheus itself. +scrape_configs: + # The job name is added as a label `job=` to any timeseries scraped from this config. + #- job_name: 'prometheus' + + # metrics_path defaults to '/metrics' + # scheme defaults to 'http'. + + #static_configs: + #- targets: ['localhost:9090'] + + - job_name: 'orderer0' + static_configs: + - targets: ['orderer0.example.com:8443'] + - job_name: 'peer0_org1' + static_configs: + - targets: ['peer0.org1.example.com:9443'] + - job_name: 'peer1_org1' + static_configs: + - targets: ['peer1.org1.example.com:9443'] + - job_name: 'peer0_org2' + static_configs: + - targets: ['peer0.org2.example.com:9443'] + - job_name: 'peer1_org2' + static_configs: + - targets: ['peer1.org2.example.com:9443'] diff --git a/hyperledger_fabric/latest/scripts/download_images.sh b/hyperledger_fabric/latest/scripts/download_images.sh index 090819f2..ed7c2abf 100644 --- a/hyperledger_fabric/latest/scripts/download_images.sh +++ b/hyperledger_fabric/latest/scripts/download_images.sh @@ -39,12 +39,19 @@ for IMG in baseimage baseos couchdb kafka zookeeper; do pull_image $HLF_IMG done +# TODO: official core.yaml still use PROJECT_VERSION for fabric-baseos, however, dockerhub does not have the version +docker tag hyperledger/fabric-baseos:$ARCH-$BASE_IMG_TAG hyperledger/fabric-baseos:$FABRIC_IMG_TAG + # Only useful for debugging # docker pull yeasy/hyperledger-fabric echo "=== Pulling fabric images ${FABRIC_IMG_TAG} from fabric repo... ===" for IMG in peer tools orderer ca ccenv tools; do - HLF_IMG=hyperledger/fabric-${IMG}:$ARCH-$FABRIC_IMG_TAG + if ["$FABRIC_IMG_TAG" == "latest"]; then + HLF_IMG=hyperledger/fabric-${IMG}:$FABRIC_IMG_TAG + else + HLF_IMG=hyperledger/fabric-${IMG}:$ARCH-$FABRIC_IMG_TAG + fi pull_image $HLF_IMG done diff --git a/hyperledger_fabric/latest/solo/channel-artifacts/businesschannel_0.block b/hyperledger_fabric/latest/solo/channel-artifacts/businesschannel_0.block index 344f0690..52418082 100644 Binary files a/hyperledger_fabric/latest/solo/channel-artifacts/businesschannel_0.block and b/hyperledger_fabric/latest/solo/channel-artifacts/businesschannel_0.block differ diff --git a/hyperledger_fabric/latest/solo/channel-artifacts/businesschannel_1.block b/hyperledger_fabric/latest/solo/channel-artifacts/businesschannel_1.block index aeaf7428..d6790ac3 100644 Binary files a/hyperledger_fabric/latest/solo/channel-artifacts/businesschannel_1.block and b/hyperledger_fabric/latest/solo/channel-artifacts/businesschannel_1.block differ diff --git a/hyperledger_fabric/latest/solo/channel-artifacts/businesschannel_2.block b/hyperledger_fabric/latest/solo/channel-artifacts/businesschannel_2.block index 3f7e3b9e..152d072e 100644 Binary files a/hyperledger_fabric/latest/solo/channel-artifacts/businesschannel_2.block and b/hyperledger_fabric/latest/solo/channel-artifacts/businesschannel_2.block differ diff --git a/hyperledger_fabric/latest/solo/channel-artifacts/businesschannel_3.block b/hyperledger_fabric/latest/solo/channel-artifacts/businesschannel_3.block index 4525d173..b8c6b402 100644 Binary files a/hyperledger_fabric/latest/solo/channel-artifacts/businesschannel_3.block and b/hyperledger_fabric/latest/solo/channel-artifacts/businesschannel_3.block differ diff --git a/hyperledger_fabric/latest/solo/channel-artifacts/businesschannel_4.block b/hyperledger_fabric/latest/solo/channel-artifacts/businesschannel_4.block index e65654e9..ccdb8c2e 100644 Binary files a/hyperledger_fabric/latest/solo/channel-artifacts/businesschannel_4.block and b/hyperledger_fabric/latest/solo/channel-artifacts/businesschannel_4.block differ diff --git a/hyperledger_fabric/latest/solo/channel-artifacts/businesschannel_5.block b/hyperledger_fabric/latest/solo/channel-artifacts/businesschannel_5.block index fcc08de0..98e1d69e 100644 Binary files a/hyperledger_fabric/latest/solo/channel-artifacts/businesschannel_5.block and b/hyperledger_fabric/latest/solo/channel-artifacts/businesschannel_5.block differ diff --git a/hyperledger_fabric/latest/solo/channel-artifacts/businesschannel_6.block b/hyperledger_fabric/latest/solo/channel-artifacts/businesschannel_6.block index c6562532..693d55a5 100644 Binary files a/hyperledger_fabric/latest/solo/channel-artifacts/businesschannel_6.block and b/hyperledger_fabric/latest/solo/channel-artifacts/businesschannel_6.block differ diff --git a/hyperledger_fabric/latest/solo/channel-artifacts/businesschannel_config.block b/hyperledger_fabric/latest/solo/channel-artifacts/businesschannel_config.block index c6562532..693d55a5 100644 Binary files a/hyperledger_fabric/latest/solo/channel-artifacts/businesschannel_config.block and b/hyperledger_fabric/latest/solo/channel-artifacts/businesschannel_config.block differ diff --git a/hyperledger_fabric/latest/solo/channel-artifacts/businesschannel_config.block.json b/hyperledger_fabric/latest/solo/channel-artifacts/businesschannel_config.block.json index b5ab5c92..595bc8ce 100644 --- a/hyperledger_fabric/latest/solo/channel-artifacts/businesschannel_config.block.json +++ b/hyperledger_fabric/latest/solo/channel-artifacts/businesschannel_config.block.json @@ -823,13 +823,13 @@ }, "signatures": [ { - "signature": "MEUCIQDFvfU5vfzQmUt9JAVHdb0VmaJgj8ZjcyHgYiN7kG7Y7wIgPelFhQvr1oN6CqSZx5aR+ZF99laG1dVldGjQCjnqvEA=", + "signature": "MEQCIA8ILQn7PayLVJ1t7Tev+TqvwcqlAgmBajzTh+UMUdZfAiAEdIHOkUiYHASKP+WQF6ZpM4k6rmHRiSKhdGMaqptLOw==", "signature_header": { "creator": { "id_bytes": "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNLekNDQWRHZ0F3SUJBZ0lSQU9CbUVKYjVPM1ZoTFkrOFJnbWZ2NHd3Q2dZSUtvWkl6ajBFQXdJd2N6RUwKTUFrR0ExVUVCaE1DVlZNeEV6QVJCZ05WQkFnVENrTmhiR2xtYjNKdWFXRXhGakFVQmdOVkJBY1REVk5oYmlCRwpjbUZ1WTJselkyOHhHVEFYQmdOVkJBb1RFRzl5WnpJdVpYaGhiWEJzWlM1amIyMHhIREFhQmdOVkJBTVRFMk5oCkxtOXlaekl1WlhoaGJYQnNaUzVqYjIwd0hoY05NVGd4TWpFNU1EYzFPVEF3V2hjTk1qZ3hNakUyTURjMU9UQXcKV2pCc01Rc3dDUVlEVlFRR0V3SlZVekVUTUJFR0ExVUVDQk1LUTJGc2FXWnZjbTVwWVRFV01CUUdBMVVFQnhNTgpVMkZ1SUVaeVlXNWphWE5qYnpFUE1BMEdBMVVFQ3hNR1kyeHBaVzUwTVI4d0hRWURWUVFEREJaQlpHMXBia0J2CmNtY3lMbVY0WVcxd2JHVXVZMjl0TUZrd0V3WUhLb1pJemowQ0FRWUlLb1pJemowREFRY0RRZ0FFaXhFZ1lWZVkKTW9xQTdYaTI4Z1dhdEU1ZlVMWTBlNEZ3RmdNRjFTdjlEQ3drcmxkajRLekduc1hOalV1ZC8ydXppSnlwK29HSwp1c1dhNDl3cWlCRExuYU5OTUVzd0RnWURWUjBQQVFIL0JBUURBZ2VBTUF3R0ExVWRFd0VCL3dRQ01BQXdLd1lEClZSMGpCQ1F3SW9BZ0xMeTJyd2xWa2QxazJlajB1RXZXN0JWK21CNjZKUU5STkNxL1pxb0JITkF3Q2dZSUtvWkkKemowRUF3SURTQUF3UlFJaEFOd1JNQXNTaEFCMndwc21pQjd4czlyNUlyWmVWUVRDMzJLRjN2UGN6dVZ3QWlBVwo4c3JOcjJGck1Nb1lhUHVGSExSNHBtWE1Kb3YvWlpTTE4rRlVkSDRkeGc9PQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCg==", "mspid": "Org2MSP" }, - "nonce": "L49DS0iv+g81L4SqVqSuoznC5En/S1rb" + "nonce": "SZapNuN1GEhmIPV/vqHSGdldrHz3hrPW" } } ] @@ -839,7 +839,7 @@ "channel_id": "businesschannel", "epoch": "0", "extension": null, - "timestamp": "2018-12-19T08:04:13Z", + "timestamp": "2019-01-09T07:44:18Z", "tls_cert_hash": null, "tx_id": "", "type": 2, @@ -850,11 +850,11 @@ "id_bytes": "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNLekNDQWRHZ0F3SUJBZ0lSQU9CbUVKYjVPM1ZoTFkrOFJnbWZ2NHd3Q2dZSUtvWkl6ajBFQXdJd2N6RUwKTUFrR0ExVUVCaE1DVlZNeEV6QVJCZ05WQkFnVENrTmhiR2xtYjNKdWFXRXhGakFVQmdOVkJBY1REVk5oYmlCRwpjbUZ1WTJselkyOHhHVEFYQmdOVkJBb1RFRzl5WnpJdVpYaGhiWEJzWlM1amIyMHhIREFhQmdOVkJBTVRFMk5oCkxtOXlaekl1WlhoaGJYQnNaUzVqYjIwd0hoY05NVGd4TWpFNU1EYzFPVEF3V2hjTk1qZ3hNakUyTURjMU9UQXcKV2pCc01Rc3dDUVlEVlFRR0V3SlZVekVUTUJFR0ExVUVDQk1LUTJGc2FXWnZjbTVwWVRFV01CUUdBMVVFQnhNTgpVMkZ1SUVaeVlXNWphWE5qYnpFUE1BMEdBMVVFQ3hNR1kyeHBaVzUwTVI4d0hRWURWUVFEREJaQlpHMXBia0J2CmNtY3lMbVY0WVcxd2JHVXVZMjl0TUZrd0V3WUhLb1pJemowQ0FRWUlLb1pJemowREFRY0RRZ0FFaXhFZ1lWZVkKTW9xQTdYaTI4Z1dhdEU1ZlVMWTBlNEZ3RmdNRjFTdjlEQ3drcmxkajRLekduc1hOalV1ZC8ydXppSnlwK29HSwp1c1dhNDl3cWlCRExuYU5OTUVzd0RnWURWUjBQQVFIL0JBUURBZ2VBTUF3R0ExVWRFd0VCL3dRQ01BQXdLd1lEClZSMGpCQ1F3SW9BZ0xMeTJyd2xWa2QxazJlajB1RXZXN0JWK21CNjZKUU5STkNxL1pxb0JITkF3Q2dZSUtvWkkKemowRUF3SURTQUF3UlFJaEFOd1JNQXNTaEFCMndwc21pQjd4czlyNUlyWmVWUVRDMzJLRjN2UGN6dVZ3QWlBVwo4c3JOcjJGck1Nb1lhUHVGSExSNHBtWE1Kb3YvWlpTTE4rRlVkSDRkeGc9PQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCg==", "mspid": "Org2MSP" }, - "nonce": "5lYnZJjAupF79hhXQkmtWjym58FI/kyL" + "nonce": "OEkn1rPnVo7o4Vxt/xz0GAR8OWtnCKX0" } } }, - "signature": "MEQCIHCZDM4PEMsxH7GcKvOhOm14NNGdFapC37AHXUDnnxB5AiBBccgfhrk6+XupyYeEiBHIjBFvO41/EuMAUC9CJuue3g==" + "signature": "MEUCIQCDWgCQ/4F/v3/jGCjb2ML/GkyJp02dkhd+PQjFyyHscAIgCkiG7/VsligZgsmagu2AjnHCgSVGvx+HxQ1uhJEEkF8=" } }, "header": { @@ -862,7 +862,7 @@ "channel_id": "businesschannel", "epoch": "0", "extension": null, - "timestamp": "2018-12-19T08:04:13Z", + "timestamp": "2019-01-09T07:44:18Z", "tls_cert_hash": null, "tx_id": "", "type": 1, @@ -873,23 +873,23 @@ "id_bytes": "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNEVENDQWJTZ0F3SUJBZ0lSQUlJcE1DdC9MbEhGNTFiYmUrSEZkOWt3Q2dZSUtvWkl6ajBFQXdJd2FURUwKTUFrR0ExVUVCaE1DVlZNeEV6QVJCZ05WQkFnVENrTmhiR2xtYjNKdWFXRXhGakFVQmdOVkJBY1REVk5oYmlCRwpjbUZ1WTJselkyOHhGREFTQmdOVkJBb1RDMlY0WVcxd2JHVXVZMjl0TVJjd0ZRWURWUVFERXc1allTNWxlR0Z0CmNHeGxMbU52YlRBZUZ3MHhPREV5TVRrd056VTVNREJhRncweU9ERXlNVFl3TnpVNU1EQmFNRmt4Q3pBSkJnTlYKQkFZVEFsVlRNUk13RVFZRFZRUUlFd3BEWVd4cFptOXlibWxoTVJZd0ZBWURWUVFIRXcxVFlXNGdSbkpoYm1OcApjMk52TVIwd0d3WURWUVFERXhSdmNtUmxjbVZ5TUM1bGVHRnRjR3hsTG1OdmJUQlpNQk1HQnlxR1NNNDlBZ0VHCkNDcUdTTTQ5QXdFSEEwSUFCR1hVVHNBa1N0cWJrRUxSbFloajN1cnNoNzRwOGMwY28xd3ZBZStqa0FJLzZpQzgKQ1p3d3JCRm9ldzlzMGUrbzA0SmxXUEx0Vmg5SXZVRnJncEk4WXFHalRUQkxNQTRHQTFVZER3RUIvd1FFQXdJSApnREFNQmdOVkhSTUJBZjhFQWpBQU1Dc0dBMVVkSXdRa01DS0FJSUt4L2lVZFNEMC9MUUlseCtZMjFvU2ZtK2JwClF0VW9DbWNxYmM3eUdYbGpNQW9HQ0NxR1NNNDlCQU1DQTBjQU1FUUNJQ2J5aEtkbndNVHpQVllJL1NHeGliNG0KU0g5cDlUVndoa1N0dGFjRyt3MEdBaUJjdFM2NmZjMnhJdEt6OE0wODJmNXBCcnFTMFQ0a0RZZkwwZGlmRjB5NQpZdz09Ci0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0K", "mspid": "OrdererMSP" }, - "nonce": "jyqXXK6m0ZTGRTz3b5zGX9WAxv4JAPLp" + "nonce": "6dvXzRe6/odqfJEK6NS7sJysp1KmApyi" } } }, - "signature": "MEUCIQC/JWbefLF4mubTKNyEQI0+WqO/POWIb6VnLNgd74KpQQIgGkBiiMpy1lKBmxlM9/0q92+QjA63VFVG12TirH41gsk=" + "signature": "MEUCIQCI35a9IGGZs5Ls86FYxM6GPcGbYlJG44k0NHK5PByXDAIgcF2Ai4+z0mbHTGNoMlrfamJF6kVO2qiZoEzeBYTZ0bQ=" } ] }, "header": { - "data_hash": "75BLIj/DecUtjU6viMms55o0cw8kNhVdeFBXZU6A5/c=", + "data_hash": "ifnJMQXYpc4F0Oz3g5Hk5kRADbswqqArSa6mUiUP7A8=", "number": "2", - "previous_hash": "k/oI5UC0pANm4V0lznkahx3eIaWX8+XWdu/Sp9H9EyQ=" + "previous_hash": "H0KpVcWpE8IX5036GoyxBGH9NbeigCkMOEQwmNqsZns=" }, "metadata": { "metadata": [ - "Ev0GCrIGCpUGCgpPcmRlcmVyTVNQEoYGLS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNEVENDQWJTZ0F3SUJBZ0lSQUlJcE1DdC9MbEhGNTFiYmUrSEZkOWt3Q2dZSUtvWkl6ajBFQXdJd2FURUwKTUFrR0ExVUVCaE1DVlZNeEV6QVJCZ05WQkFnVENrTmhiR2xtYjNKdWFXRXhGakFVQmdOVkJBY1REVk5oYmlCRwpjbUZ1WTJselkyOHhGREFTQmdOVkJBb1RDMlY0WVcxd2JHVXVZMjl0TVJjd0ZRWURWUVFERXc1allTNWxlR0Z0CmNHeGxMbU52YlRBZUZ3MHhPREV5TVRrd056VTVNREJhRncweU9ERXlNVFl3TnpVNU1EQmFNRmt4Q3pBSkJnTlYKQkFZVEFsVlRNUk13RVFZRFZRUUlFd3BEWVd4cFptOXlibWxoTVJZd0ZBWURWUVFIRXcxVFlXNGdSbkpoYm1OcApjMk52TVIwd0d3WURWUVFERXhSdmNtUmxjbVZ5TUM1bGVHRnRjR3hsTG1OdmJUQlpNQk1HQnlxR1NNNDlBZ0VHCkNDcUdTTTQ5QXdFSEEwSUFCR1hVVHNBa1N0cWJrRUxSbFloajN1cnNoNzRwOGMwY28xd3ZBZStqa0FJLzZpQzgKQ1p3d3JCRm9ldzlzMGUrbzA0SmxXUEx0Vmg5SXZVRnJncEk4WXFHalRUQkxNQTRHQTFVZER3RUIvd1FFQXdJSApnREFNQmdOVkhSTUJBZjhFQWpBQU1Dc0dBMVVkSXdRa01DS0FJSUt4L2lVZFNEMC9MUUlseCtZMjFvU2ZtK2JwClF0VW9DbWNxYmM3eUdYbGpNQW9HQ0NxR1NNNDlCQU1DQTBjQU1FUUNJQ2J5aEtkbndNVHpQVllJL1NHeGliNG0KU0g5cDlUVndoa1N0dGFjRyt3MEdBaUJjdFM2NmZjMnhJdEt6OE0wODJmNXBCcnFTMFQ0a0RZZkwwZGlmRjB5NQpZdz09Ci0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0KEhhVSUKJcHs+1Jy41cCGc9hM3+ptL/Oxs+sSRjBEAiBIpN9nPFl/MCz3hvjVuIFaIsyYuxNgv9ST+DiPfYkSCQIgL+x+7L8qyCaVODOycbbHbi/1j6nUuDrsYD9oMDH/hM0=", - "CgIIAhL+BgqyBgqVBgoKT3JkZXJlck1TUBKGBi0tLS0tQkVHSU4gQ0VSVElGSUNBVEUtLS0tLQpNSUlDRFRDQ0FiU2dBd0lCQWdJUkFJSXBNQ3QvTGxIRjUxYmJlK0hGZDlrd0NnWUlLb1pJemowRUF3SXdhVEVMCk1Ba0dBMVVFQmhNQ1ZWTXhFekFSQmdOVkJBZ1RDa05oYkdsbWIzSnVhV0V4RmpBVUJnTlZCQWNURFZOaGJpQkcKY21GdVkybHpZMjh4RkRBU0JnTlZCQW9UQzJWNFlXMXdiR1V1WTI5dE1SY3dGUVlEVlFRREV3NWpZUzVsZUdGdApjR3hsTG1OdmJUQWVGdzB4T0RFeU1Ua3dOelU1TURCYUZ3MHlPREV5TVRZd056VTVNREJhTUZreEN6QUpCZ05WCkJBWVRBbFZUTVJNd0VRWURWUVFJRXdwRFlXeHBabTl5Ym1saE1SWXdGQVlEVlFRSEV3MVRZVzRnUm5KaGJtTnAKYzJOdk1SMHdHd1lEVlFRREV4UnZjbVJsY21WeU1DNWxlR0Z0Y0d4bExtTnZiVEJaTUJNR0J5cUdTTTQ5QWdFRwpDQ3FHU000OUF3RUhBMElBQkdYVVRzQWtTdHFia0VMUmxZaGozdXJzaDc0cDhjMGNvMXd2QWUramtBSS82aUM4CkNad3dyQkZvZXc5czBlK28wNEpsV1BMdFZoOUl2VUZyZ3BJOFlxR2pUVEJMTUE0R0ExVWREd0VCL3dRRUF3SUgKZ0RBTUJnTlZIUk1CQWY4RUFqQUFNQ3NHQTFVZEl3UWtNQ0tBSUlLeC9pVWRTRDAvTFFJbHgrWTIxb1NmbSticApRdFVvQ21jcWJjN3lHWGxqTUFvR0NDcUdTTTQ5QkFNQ0EwY0FNRVFDSUNieWhLZG53TVR6UFZZSS9TR3hpYjRtClNIOXA5VFZ3aGtTdHRhY0crdzBHQWlCY3RTNjZmYzJ4SXRLejhNMDgyZjVwQnJxUzBUNGtEWWZMMGRpZkYweTUKWXc9PQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tChIYsgK1kVEbI1xVBYWTi3SmmF/FRwt4c1XcEkcwRQIhAOYyq9c72I0Ij85/hovFFNEKUFAEfKrSFtii4g4jaWPvAiAjCon0oPpuxqgxU5I1AwiPCR2TTvvGFDGQvh1zl20DIQ==", + "Ev4GCrIGCpUGCgpPcmRlcmVyTVNQEoYGLS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNEVENDQWJTZ0F3SUJBZ0lSQUlJcE1DdC9MbEhGNTFiYmUrSEZkOWt3Q2dZSUtvWkl6ajBFQXdJd2FURUwKTUFrR0ExVUVCaE1DVlZNeEV6QVJCZ05WQkFnVENrTmhiR2xtYjNKdWFXRXhGakFVQmdOVkJBY1REVk5oYmlCRwpjbUZ1WTJselkyOHhGREFTQmdOVkJBb1RDMlY0WVcxd2JHVXVZMjl0TVJjd0ZRWURWUVFERXc1allTNWxlR0Z0CmNHeGxMbU52YlRBZUZ3MHhPREV5TVRrd056VTVNREJhRncweU9ERXlNVFl3TnpVNU1EQmFNRmt4Q3pBSkJnTlYKQkFZVEFsVlRNUk13RVFZRFZRUUlFd3BEWVd4cFptOXlibWxoTVJZd0ZBWURWUVFIRXcxVFlXNGdSbkpoYm1OcApjMk52TVIwd0d3WURWUVFERXhSdmNtUmxjbVZ5TUM1bGVHRnRjR3hsTG1OdmJUQlpNQk1HQnlxR1NNNDlBZ0VHCkNDcUdTTTQ5QXdFSEEwSUFCR1hVVHNBa1N0cWJrRUxSbFloajN1cnNoNzRwOGMwY28xd3ZBZStqa0FJLzZpQzgKQ1p3d3JCRm9ldzlzMGUrbzA0SmxXUEx0Vmg5SXZVRnJncEk4WXFHalRUQkxNQTRHQTFVZER3RUIvd1FFQXdJSApnREFNQmdOVkhSTUJBZjhFQWpBQU1Dc0dBMVVkSXdRa01DS0FJSUt4L2lVZFNEMC9MUUlseCtZMjFvU2ZtK2JwClF0VW9DbWNxYmM3eUdYbGpNQW9HQ0NxR1NNNDlCQU1DQTBjQU1FUUNJQ2J5aEtkbndNVHpQVllJL1NHeGliNG0KU0g5cDlUVndoa1N0dGFjRyt3MEdBaUJjdFM2NmZjMnhJdEt6OE0wODJmNXBCcnFTMFQ0a0RZZkwwZGlmRjB5NQpZdz09Ci0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0KEhgcODkqPB3vDFhjIcdNHr13WEQDGaUrHGsSRzBFAiEAqyyMjxvXomxJ+EcAyorH4+LAkeEsLQ2I+MK43JOS5EoCIAPE+CqHpcianrSmKQ+y4fzjc/RpwzDjjf5O+ZJjYhXk", + "CgIIAhL9BgqyBgqVBgoKT3JkZXJlck1TUBKGBi0tLS0tQkVHSU4gQ0VSVElGSUNBVEUtLS0tLQpNSUlDRFRDQ0FiU2dBd0lCQWdJUkFJSXBNQ3QvTGxIRjUxYmJlK0hGZDlrd0NnWUlLb1pJemowRUF3SXdhVEVMCk1Ba0dBMVVFQmhNQ1ZWTXhFekFSQmdOVkJBZ1RDa05oYkdsbWIzSnVhV0V4RmpBVUJnTlZCQWNURFZOaGJpQkcKY21GdVkybHpZMjh4RkRBU0JnTlZCQW9UQzJWNFlXMXdiR1V1WTI5dE1SY3dGUVlEVlFRREV3NWpZUzVsZUdGdApjR3hsTG1OdmJUQWVGdzB4T0RFeU1Ua3dOelU1TURCYUZ3MHlPREV5TVRZd056VTVNREJhTUZreEN6QUpCZ05WCkJBWVRBbFZUTVJNd0VRWURWUVFJRXdwRFlXeHBabTl5Ym1saE1SWXdGQVlEVlFRSEV3MVRZVzRnUm5KaGJtTnAKYzJOdk1SMHdHd1lEVlFRREV4UnZjbVJsY21WeU1DNWxlR0Z0Y0d4bExtTnZiVEJaTUJNR0J5cUdTTTQ5QWdFRwpDQ3FHU000OUF3RUhBMElBQkdYVVRzQWtTdHFia0VMUmxZaGozdXJzaDc0cDhjMGNvMXd2QWUramtBSS82aUM4CkNad3dyQkZvZXc5czBlK28wNEpsV1BMdFZoOUl2VUZyZ3BJOFlxR2pUVEJMTUE0R0ExVWREd0VCL3dRRUF3SUgKZ0RBTUJnTlZIUk1CQWY4RUFqQUFNQ3NHQTFVZEl3UWtNQ0tBSUlLeC9pVWRTRDAvTFFJbHgrWTIxb1NmbSticApRdFVvQ21jcWJjN3lHWGxqTUFvR0NDcUdTTTQ5QkFNQ0EwY0FNRVFDSUNieWhLZG53TVR6UFZZSS9TR3hpYjRtClNIOXA5VFZ3aGtTdHRhY0crdzBHQWlCY3RTNjZmYzJ4SXRLejhNMDgyZjVwQnJxUzBUNGtEWWZMMGRpZkYweTUKWXc9PQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tChIYTFtjkrT6X/nCk2ueNCZoAniEhV1boy5JEkYwRAIgcKxReO67DIAtzU93uRDOSoIzVAr6rrr0ysEziO9sltgCIA+Tsc5xpJ5hbOfDm9MEQaCjhYaCLLgoy/M1s1ZBkILO", "", "" ] diff --git a/hyperledger_fabric/latest/solo/channel-artifacts/config_delta.pb b/hyperledger_fabric/latest/solo/channel-artifacts/config_delta.pb index 9dc3f22f..a43f26a3 100644 Binary files a/hyperledger_fabric/latest/solo/channel-artifacts/config_delta.pb and b/hyperledger_fabric/latest/solo/channel-artifacts/config_delta.pb differ diff --git a/hyperledger_fabric/latest/solo/channel-artifacts/config_delta_env.pb b/hyperledger_fabric/latest/solo/channel-artifacts/config_delta_env.pb index 0726fcca..adadaf4b 100644 Binary files a/hyperledger_fabric/latest/solo/channel-artifacts/config_delta_env.pb and b/hyperledger_fabric/latest/solo/channel-artifacts/config_delta_env.pb differ diff --git a/hyperledger_fabric/latest/solo/channel-artifacts/original_config.pb b/hyperledger_fabric/latest/solo/channel-artifacts/original_config.pb index dcaadb35..17fa022e 100644 Binary files a/hyperledger_fabric/latest/solo/channel-artifacts/original_config.pb and b/hyperledger_fabric/latest/solo/channel-artifacts/original_config.pb differ diff --git a/hyperledger_fabric/latest/solo/channel-artifacts/testchainid_1.block b/hyperledger_fabric/latest/solo/channel-artifacts/testchainid_1.block index c6e50e1e..a65bbb02 100644 Binary files a/hyperledger_fabric/latest/solo/channel-artifacts/testchainid_1.block and b/hyperledger_fabric/latest/solo/channel-artifacts/testchainid_1.block differ diff --git a/hyperledger_fabric/latest/solo/channel-artifacts/updated_config.pb b/hyperledger_fabric/latest/solo/channel-artifacts/updated_config.pb index 28d5138d..f7aa92bf 100644 Binary files a/hyperledger_fabric/latest/solo/channel-artifacts/updated_config.pb and b/hyperledger_fabric/latest/solo/channel-artifacts/updated_config.pb differ diff --git a/hyperledger_fabric/latest/solo/logs/dev_all.log b/hyperledger_fabric/latest/solo/logs/dev_all.log index eeba968b..fe25925a 100644 --- a/hyperledger_fabric/latest/solo/logs/dev_all.log +++ b/hyperledger_fabric/latest/solo/logs/dev_all.log @@ -1,589 +1,773 @@ -Attaching to peer0.org2.example.com, peer0.org1.example.com, peer1.org1.example.com, peer1.org2.example.com, orderer0.example.com, fabric-cli -orderer0.example.com | 2018-12-19 08:04:01.931 UTC [localconfig] completeInitialization -> INFO 001 Kafka.Version unset, setting to 0.10.2.0 -orderer0.example.com | [002 12-19 08:04:02.02 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.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.LogLevel = "INFO" -orderer0.example.com | General.LogFormat = "%{color}[%{id:03x} %{time:01-02 15:04:05.00 MST}] [%{longpkg}] %{callpath} -> %{level:.4s}%{color:reset} %{message}" -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.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 | [003 12-19 08:04:02.07 UTC] [%{longpkg}] %{callpath} -> INFO Starting orderer with TLS enabled -orderer0.example.com | [004 12-19 08:04:02.09 UTC] [%{longpkg}] %{callpath} -> INFO Getting block information from block storage -orderer0.example.com | [005 12-19 08:04:02.11 UTC] [%{longpkg}] %{callpath} -> INFO Starting system channel 'testchainid' with genesis block hash 11eb25c13ca75dfd372258c750d5f8b4e7935b5cea9abbbf28bc7ed93851b4e3 and orderer type solo -orderer0.example.com | [006 12-19 08:04:02.11 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.10.4 -orderer0.example.com | OS/Arch: linux/amd64 -orderer0.example.com | [007 12-19 08:04:02.11 UTC] [%{longpkg}] %{callpath} -> INFO Beginning to serve requests -orderer0.example.com | [008 12-19 08:04:07.61 UTC] [%{longpkg}] %{callpath} -> INFO Getting block information from block storage -orderer0.example.com | [009 12-19 08:04:07.62 UTC] [%{longpkg}] %{callpath} -> INFO Created and starting new chain businesschannel -orderer0.example.com | [00a 12-19 08:04:11.67 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.18.0.3:59536: rpc error: code = Canceled desc = context canceled -orderer0.example.com | [00b 12-19 08:04:11.68 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.18.0.3:59538: rpc error: code = Canceled desc = context canceled -orderer0.example.com | [00c 12-19 08:04:13.87 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.18.0.3:59540: rpc error: code = Canceled desc = context canceled -orderer0.example.com | [00d 12-19 08:04:13.87 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.18.0.3:59542: rpc error: code = Canceled desc = context canceled -orderer0.example.com | [00e 12-19 08:05:02.75 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.18.0.3:59604: rpc error: code = Canceled desc = context canceled -orderer0.example.com | [00f 12-19 08:05:46.54 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.18.0.3:59622: rpc error: code = Canceled desc = context canceled -orderer0.example.com | [010 12-19 08:05:49.85 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.18.0.3:59636: rpc error: code = Canceled desc = context canceled -orderer0.example.com | [011 12-19 08:05:58.37 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.18.0.3:59686: rpc error: code = Canceled desc = context canceled -orderer0.example.com | [012 12-19 08:05:58.67 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.18.0.3:59688: rpc error: code = Canceled desc = context canceled -orderer0.example.com | [013 12-19 08:05:58.85 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.18.0.3:59690: rpc error: code = Canceled desc = context canceled -orderer0.example.com | [014 12-19 08:05:59.20 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.18.0.3:59692: rpc error: code = Canceled desc = context canceled -orderer0.example.com | [015 12-19 08:05:59.45 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.18.0.3:59694: rpc error: code = Canceled desc = context canceled -orderer0.example.com | [016 12-19 08:05:59.71 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.18.0.3:59696: rpc error: code = Canceled desc = context canceled -orderer0.example.com | [017 12-19 08:05:59.93 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.18.0.3:59698: rpc error: code = Canceled desc = context canceled -orderer0.example.com | [018 12-19 08:06:00.24 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.18.0.3:59700: rpc error: code = Canceled desc = context canceled -orderer0.example.com | [019 12-19 08:06:00.47 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.18.0.3:59702: rpc error: code = Canceled desc = context canceled -orderer0.example.com | [01a 12-19 08:06:00.70 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.18.0.3:59704: rpc error: code = Canceled desc = context canceled -orderer0.example.com | [01b 12-19 08:06:00.91 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.18.0.3:59706: rpc error: code = Canceled desc = context canceled -orderer0.example.com | [01c 12-19 08:06:01.23 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.18.0.3:59708: rpc error: code = Canceled desc = context canceled -orderer0.example.com | [01d 12-19 08:06:09.79 UTC] [%{longpkg}] %{callpath} -> WARN De-duplicating identity 0a074f7267314d535012aa062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434b6a4343416447674177494241674952414e7a345049457a56423178717639624f744f614e2b3877436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5467784d6a45354d4463314f5441775768634e4d6a67784d6a45324d4463314f5441770a576a42734d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45504d4130474131554543784d47593278705a5735304d523877485159445651514444425a425a473170626b42760a636d63784c6d56345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a497a6a30444151634451674145335a79366a6a45590a4c69343562504b56416f5968506b64755567756930454c593943414d5a6b436464472f6f446a6e66584e5767614b526e7772365353653972773656356d534f730a4e4c4d37624c78744542612b634b4e4e4d45737744675944565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759440a5652306a42435177496f4167645848684e786650744f7a3835506c4832594972673639474a43565551777178344e557776796e6749503877436759494b6f5a490a7a6a30454177494452774177524149674b565078706c7162543842454a4475666f38483635367564584d2f53473048464c436e334c526b515341554349456e6f0a453356544f79725241425970626e3033384633644c58514d692f344e5a2f50317a49552b6d4b57560a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a at index 2 in signature set -orderer0.example.com | [01e 12-19 08:06:09.79 UTC] [%{longpkg}] %{callpath} -> WARN De-duplicating identity 0a074f7267314d535012aa062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434b6a4343416447674177494241674952414e7a345049457a56423178717639624f744f614e2b3877436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5467784d6a45354d4463314f5441775768634e4d6a67784d6a45324d4463314f5441770a576a42734d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45504d4130474131554543784d47593278705a5735304d523877485159445651514444425a425a473170626b42760a636d63784c6d56345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a497a6a30444151634451674145335a79366a6a45590a4c69343562504b56416f5968506b64755567756930454c593943414d5a6b436464472f6f446a6e66584e5767614b526e7772365353653972773656356d534f730a4e4c4d37624c78744542612b634b4e4e4d45737744675944565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759440a5652306a42435177496f4167645848684e786650744f7a3835506c4832594972673639474a43565551777178344e557776796e6749503877436759494b6f5a490a7a6a30454177494452774177524149674b565078706c7162543842454a4475666f38483635367564584d2f53473048464c436e334c526b515341554349456e6f0a453356544f79725241425970626e3033384633644c58514d692f344e5a2f50317a49552b6d4b57560a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a at index 2 in signature set -orderer0.example.com | [01f 12-19 08:06:09.81 UTC] [%{longpkg}] %{callpath} -> WARN De-duplicating identity 0a074f7267314d535012aa062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434b6a4343416447674177494241674952414e7a345049457a56423178717639624f744f614e2b3877436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5467784d6a45354d4463314f5441775768634e4d6a67784d6a45324d4463314f5441770a576a42734d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45504d4130474131554543784d47593278705a5735304d523877485159445651514444425a425a473170626b42760a636d63784c6d56345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a497a6a30444151634451674145335a79366a6a45590a4c69343562504b56416f5968506b64755567756930454c593943414d5a6b436464472f6f446a6e66584e5767614b526e7772365353653972773656356d534f730a4e4c4d37624c78744542612b634b4e4e4d45737744675944565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759440a5652306a42435177496f4167645848684e786650744f7a3835506c4832594972673639474a43565551777178344e557776796e6749503877436759494b6f5a490a7a6a30454177494452774177524149674b565078706c7162543842454a4475666f38483635367564584d2f53473048464c436e334c526b515341554349456e6f0a453356544f79725241425970626e3033384633644c58514d692f344e5a2f50317a49552b6d4b57560a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a at index 2 in signature set -orderer0.example.com | [020 12-19 08:06:09.81 UTC] [%{longpkg}] %{callpath} -> WARN De-duplicating identity 0a074f7267314d535012aa062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434b6a4343416447674177494241674952414e7a345049457a56423178717639624f744f614e2b3877436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5467784d6a45354d4463314f5441775768634e4d6a67784d6a45324d4463314f5441770a576a42734d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45504d4130474131554543784d47593278705a5735304d523877485159445651514444425a425a473170626b42760a636d63784c6d56345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a497a6a30444151634451674145335a79366a6a45590a4c69343562504b56416f5968506b64755567756930454c593943414d5a6b436464472f6f446a6e66584e5767614b526e7772365353653972773656356d534f730a4e4c4d37624c78744542612b634b4e4e4d45737744675944565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759440a5652306a42435177496f4167645848684e786650744f7a3835506c4832594972673639474a43565551777178344e557776796e6749503877436759494b6f5a490a7a6a30454177494452774177524149674b565078706c7162543842454a4475666f38483635367564584d2f53473048464c436e334c526b515341554349456e6f0a453356544f79725241425970626e3033384633644c58514d692f344e5a2f50317a49552b6d4b57560a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a at index 2 in signature set -orderer0.example.com | [021 12-19 08:06:09.81 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.18.0.3:59712: rpc error: code = Canceled desc = context canceled -orderer0.example.com | [022 12-19 08:06:09.82 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.18.0.3:59710: rpc error: code = Canceled desc = context canceled -orderer0.example.com | [023 12-19 08:06:12.02 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.18.0.3:59734: rpc error: code = Canceled desc = context canceled -orderer0.example.com | [024 12-19 08:06:12.18 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.18.0.3:59736: rpc error: code = Canceled desc = context canceled -orderer0.example.com | [025 12-19 08:06:12.71 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.18.0.3:59740: rpc error: code = Canceled desc = context canceled -orderer0.example.com | [026 12-19 08:06:13.01 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.18.0.3:59742: rpc error: code = Canceled desc = context canceled -orderer0.example.com | [027 12-19 08:06:13.18 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.18.0.3:59744: rpc error: code = Canceled desc = context canceled -orderer0.example.com | [028 12-19 08:06:13.40 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.18.0.3:59746: rpc error: code = Canceled desc = context canceled -orderer0.example.com | [029 12-19 08:06:13.64 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.18.0.3:59748: rpc error: code = Canceled desc = context canceled -peer0.org1.example.com | [001 12-19 08:04:04.60 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.10.4 -peer0.org1.example.com | OS/Arch: linux/amd64 -peer0.org1.example.com | Chaincode: -peer0.org1.example.com | Base Image Version: 0.4.13 -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 12-19 08:04:04.60 UTC] [%{longpkg}] %{callpath} -> INFO Initializing ledger mgmt -peer0.org1.example.com | [003 12-19 08:04:04.60 UTC] [%{longpkg}] %{callpath} -> INFO Initializing ledger provider -peer0.org1.example.com | [004 12-19 08:04:04.92 UTC] [%{longpkg}] %{callpath} -> INFO ledger provider Initialized -peer0.org1.example.com | [005 12-19 08:04:04.95 UTC] [%{longpkg}] %{callpath} -> INFO ledger mgmt initialized -peer0.org1.example.com | [006 12-19 08:04:04.95 UTC] [%{longpkg}] %{callpath} -> INFO Auto-detected peer address: 172.18.0.6:7051 -peer0.org1.example.com | [007 12-19 08:04:04.95 UTC] [%{longpkg}] %{callpath} -> INFO Returning peer0.org1.example.com:7051 -peer0.org1.example.com | [008 12-19 08:04:04.95 UTC] [%{longpkg}] %{callpath} -> INFO Auto-detected peer address: 172.18.0.6:7051 -peer0.org1.example.com | [009 12-19 08:04:04.95 UTC] [%{longpkg}] %{callpath} -> INFO Returning peer0.org1.example.com:7051 -peer0.org1.example.com | [00a 12-19 08:04:04.97 UTC] [%{longpkg}] %{callpath} -> INFO Starting peer with TLS enabled -peer0.org1.example.com | [00b 12-19 08:04:04.98 UTC] [%{longpkg}] %{callpath} -> INFO Entering computeChaincodeEndpoint with peerHostname: peer0.org1.example.com -peer0.org1.example.com | [00c 12-19 08:04:04.98 UTC] [%{longpkg}] %{callpath} -> INFO Exit with ccEndpoint: peer0.org1.example.com:7052 -peer0.org1.example.com | [00d 12-19 08:04:04.99 UTC] [%{longpkg}] %{callpath} -> INFO system chaincode lscc(github.com/hyperledger/fabric/core/scc/lscc) registered -peer0.org1.example.com | [00e 12-19 08:04:05.00 UTC] [%{longpkg}] %{callpath} -> INFO system chaincode cscc(github.com/hyperledger/fabric/core/scc/cscc) registered -peer0.org1.example.com | [00f 12-19 08:04:05.00 UTC] [%{longpkg}] %{callpath} -> INFO system chaincode qscc(github.com/hyperledger/fabric/core/scc/qscc) registered -peer0.org1.example.com | [010 12-19 08:04:05.00 UTC] [%{longpkg}] %{callpath} -> INFO system chaincode +lifecycle(github.com/hyperledger/fabric/core/chaincode/lifecycle) registered -peer0.org1.example.com | [011 12-19 08:04:05.01 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 12-19 08:04:05.02 UTC] [%{longpkg}] %{callpath} -> INFO Creating gossip service with self membership of {peer0.org1.example.com:7051 [] [9 159 19 203 226 219 13 6 93 161 254 206 255 179 131 59 221 163 227 236 120 147 164 10 55 182 11 208 181 66 69 217] peer0.org1.example.com:7051 } -peer0.org1.example.com | [013 12-19 08:04:05.02 UTC] [%{longpkg}] %{callpath} -> INFO Gossip instance peer0.org1.example.com:7051 started -peer0.org1.example.com | [014 12-19 08:04:05.02 UTC] [%{longpkg}] %{callpath} -> INFO system chaincode lscc/(github.com/hyperledger/fabric/core/scc/lscc) deployed -peer0.org1.example.com | [015 12-19 08:04:05.02 UTC] [%{longpkg}] %{callpath} -> INFO Init CSCC -peer0.org1.example.com | [016 12-19 08:04:05.02 UTC] [%{longpkg}] %{callpath} -> INFO system chaincode cscc/(github.com/hyperledger/fabric/core/scc/cscc) deployed -peer0.org1.example.com | [017 12-19 08:04:05.02 UTC] [%{longpkg}] %{callpath} -> INFO Init QSCC -peer0.org1.example.com | [018 12-19 08:04:05.02 UTC] [%{longpkg}] %{callpath} -> INFO system chaincode qscc/(github.com/hyperledger/fabric/core/scc/qscc) deployed -peer0.org1.example.com | [019 12-19 08:04:05.03 UTC] [%{longpkg}] %{callpath} -> INFO system chaincode +lifecycle/(github.com/hyperledger/fabric/core/chaincode/lifecycle) deployed -peer0.org1.example.com | [01a 12-19 08:04:05.03 UTC] [%{longpkg}] %{callpath} -> INFO Deployed system chaincodes -peer0.org1.example.com | [01b 12-19 08:04:05.03 UTC] [%{longpkg}] %{callpath} -> INFO Created with config TLS: true, authCacheMaxSize: 1000, authCachePurgeRatio: 0.750000 -peer0.org1.example.com | [01c 12-19 08:04:05.03 UTC] [%{longpkg}] %{callpath} -> INFO Discovery service activated -peer0.org1.example.com | [01d 12-19 08:04:05.03 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 12-19 08:04:05.03 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 12-19 08:04:08.41 UTC] [%{longpkg}] %{callpath} -> INFO [][c741eb2b] Entry chaincode: name:"cscc" -peer0.org1.example.com | [020 12-19 08:04:08.41 UTC] [%{longpkg}] %{callpath} -> INFO Creating ledger [businesschannel] with genesis block -peer0.org1.example.com | [021 12-19 08:04:08.42 UTC] [%{longpkg}] %{callpath} -> INFO Getting block information from block storage -peer0.org1.example.com | [022 12-19 08:04:08.44 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Committed block [0] with 1 transaction(s) in 15ms (state_validation=1ms block_commit=8ms state_commit=4ms) -peer0.org1.example.com | [023 12-19 08:04:08.44 UTC] [%{longpkg}] %{callpath} -> INFO Created ledger [businesschannel] with genesis block -peer0.org1.example.com | [024 12-19 08:04:08.45 UTC] [%{longpkg}] %{callpath} -> INFO Joining gossip network of channel businesschannel with 2 organizations -peer0.org1.example.com | [025 12-19 08:04:08.45 UTC] [%{longpkg}] %{callpath} -> INFO No configured anchor peers of Org2MSP for channel businesschannel to learn about -peer0.org1.example.com | [026 12-19 08:04:08.45 UTC] [%{longpkg}] %{callpath} -> INFO No configured anchor peers of Org1MSP for channel businesschannel to learn about -peer0.org1.example.com | [027 12-19 08:04:08.48 UTC] [%{longpkg}] %{callpath} -> INFO Updating metadata information, current ledger sequence is at = 0, next expected block is = 1 -peer0.org1.example.com | [028 12-19 08:04:08.48 UTC] [%{longpkg}] %{callpath} -> INFO system chaincode lscc/businesschannel(github.com/hyperledger/fabric/core/scc/lscc) deployed -peer0.org1.example.com | [029 12-19 08:04:08.48 UTC] [%{longpkg}] %{callpath} -> INFO Init CSCC -peer0.org1.example.com | [02a 12-19 08:04:08.48 UTC] [%{longpkg}] %{callpath} -> INFO system chaincode cscc/businesschannel(github.com/hyperledger/fabric/core/scc/cscc) deployed -peer0.org1.example.com | [02b 12-19 08:04:08.48 UTC] [%{longpkg}] %{callpath} -> INFO Init QSCC -peer0.org1.example.com | [02c 12-19 08:04:08.48 UTC] [%{longpkg}] %{callpath} -> INFO system chaincode qscc/businesschannel(github.com/hyperledger/fabric/core/scc/qscc) deployed -peer0.org1.example.com | [02d 12-19 08:04:08.48 UTC] [%{longpkg}] %{callpath} -> INFO system chaincode +lifecycle/businesschannel(github.com/hyperledger/fabric/core/chaincode/lifecycle) deployed -peer0.org1.example.com | [02e 12-19 08:04:08.48 UTC] [%{longpkg}] %{callpath} -> INFO [][c741eb2b] Exit chaincode: name:"cscc" (75ms) -peer0.org1.example.com | [02f 12-19 08:04:09.71 UTC] [%{longpkg}] %{callpath} -> INFO [][f340e4a8] Entry chaincode: name:"cscc" -peer0.org1.example.com | [030 12-19 08:04:09.71 UTC] [%{longpkg}] %{callpath} -> INFO [][f340e4a8] Exit chaincode: name:"cscc" (1ms) -peer0.org1.example.com | [031 12-19 08:04:10.70 UTC] [%{longpkg}] %{callpath} -> INFO [][3bbd1024] Entry chaincode: name:"qscc" -peer0.org1.example.com | [032 12-19 08:04:10.70 UTC] [%{longpkg}] %{callpath} -> INFO [][3bbd1024] Exit chaincode: name:"qscc" (1ms) -peer0.org1.example.com | [033 12-19 08:04:14.48 UTC] [%{longpkg}] %{callpath} -> INFO [9 159 19 203 226 219 13 6 93 161 254 206 255 179 131 59 221 163 227 236 120 147 164 10 55 182 11 208 181 66 69 217] : Becoming a leader -orderer0.example.com | [02a 12-19 08:06:13.85 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.18.0.3:59750: rpc error: code = Canceled desc = context canceled -orderer0.example.com | [02b 12-19 08:06:14.10 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.18.0.3:59752: rpc error: code = Canceled desc = context canceled -orderer0.example.com | [02c 12-19 08:06:14.32 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.18.0.3:59754: rpc error: code = Canceled desc = context canceled -orderer0.example.com | [02d 12-19 08:06:14.54 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.18.0.3:59756: rpc error: code = Canceled desc = context canceled -orderer0.example.com | [02e 12-19 08:06:14.76 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.18.0.3:59758: rpc error: code = Canceled desc = context canceled -orderer0.example.com | [02f 12-19 08:06:14.97 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.18.0.3:59760: rpc error: code = Canceled desc = context canceled -orderer0.example.com | [030 12-19 08:06:15.14 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.18.0.3:59762: rpc error: code = Canceled desc = context canceled -orderer0.example.com | [031 12-19 08:06:15.35 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.18.0.3:59764: rpc error: code = Canceled desc = context canceled -peer0.org1.example.com | [034 12-19 08:04:14.48 UTC] [%{longpkg}] %{callpath} -> INFO Elected as a leader, starting delivery service for channel businesschannel -peer0.org1.example.com | [035 12-19 08:04:14.49 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Received block [1] from buffer -peer0.org1.example.com | [036 12-19 08:04:14.51 UTC] [%{longpkg}] %{callpath} -> INFO Joining gossip network of channel businesschannel with 2 organizations -peer0.org1.example.com | [037 12-19 08:04:14.51 UTC] [%{longpkg}] %{callpath} -> INFO Learning about the configured anchor peers of Org1MSP for channel businesschannel : [{peer0.org1.example.com 7051}] -peer0.org1.example.com | [038 12-19 08:04:14.51 UTC] [%{longpkg}] %{callpath} -> INFO Anchor peer with same endpoint, skipping connecting to myself -peer0.org1.example.com | [039 12-19 08:04:14.51 UTC] [%{longpkg}] %{callpath} -> INFO No configured anchor peers of Org2MSP for channel businesschannel to learn about -peer0.org1.example.com | [03a 12-19 08:04:14.53 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Validated block [1] in 38ms -peer0.org1.example.com | [03b 12-19 08:04:14.56 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Committed block [1] with 1 transaction(s) in 25ms (state_validation=1ms block_commit=15ms state_commit=7ms) -peer0.org1.example.com | [03c 12-19 08:04:14.56 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Received block [2] from buffer -peer0.org1.example.com | [03d 12-19 08:04:14.57 UTC] [%{longpkg}] %{callpath} -> INFO Joining gossip network of channel businesschannel with 2 organizations -peer0.org1.example.com | [03e 12-19 08:04:14.57 UTC] [%{longpkg}] %{callpath} -> INFO Learning about the configured anchor peers of Org2MSP for channel businesschannel : [{peer0.org2.example.com 7051}] -peer0.org1.example.com | [03f 12-19 08:04:14.57 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 12-19 08:04:14.57 UTC] [%{longpkg}] %{callpath} -> INFO Anchor peer with same endpoint, skipping connecting to myself -peer0.org1.example.com | [041 12-19 08:04:14.58 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Validated block [2] in 25ms -peer0.org1.example.com | [042 12-19 08:04:14.61 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Committed block [2] with 1 transaction(s) in 25ms (state_validation=1ms block_commit=18ms state_commit=2ms) -peer0.org1.example.com | [043 12-19 08:04:18.79 UTC] [%{longpkg}] %{callpath} -> INFO [][d43c8044] Entry chaincode: name:"lscc" -peer0.org1.example.com | [044 12-19 08:04:18.80 UTC] [%{longpkg}] %{callpath} -> INFO Installed Chaincode [exp02] Version [1.0] to peer -peer0.org1.example.com | [045 12-19 08:04:18.80 UTC] [%{longpkg}] %{callpath} -> INFO [][d43c8044] Exit chaincode: name:"lscc" (2ms) -peer0.org1.example.com | [046 12-19 08:04:21.64 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][28929422] Entry chaincode: name:"lscc" -peer0.org1.example.com | [047 12-19 08:04:21.66 UTC] [%{longpkg}] %{callpath} -> INFO building chaincode with ldflagsOpt: '-ldflags "-linkmode external -extldflags '-static'"' -peer0.org1.example.com | [048 12-19 08:05:02.74 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][28929422] Exit chaincode: name:"lscc" (41173ms) -peer0.org1.example.com | [049 12-19 08:05:04.75 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Received block [3] from buffer -peer0.org1.example.com | [04a 12-19 08:05:04.76 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Validated block [3] in 4ms -peer0.org1.example.com | [04b 12-19 08:05:04.76 UTC] [%{longpkg}] %{callpath} -> INFO Channel [businesschannel]: Handling LSCC state update for chaincode [exp02] -peer0.org1.example.com | [04c 12-19 08:05:04.78 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Committed block [3] with 1 transaction(s) in 21ms (state_validation=0ms block_commit=14ms state_commit=3ms) -peer0.org1.example.com | [04d 12-19 08:05:46.53 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][cec69b4f] Entry chaincode: name:"exp02" -peer1.org2.example.com | [001 12-19 08:04:04.03 UTC] [%{longpkg}] %{callpath} -> INFO Starting peer: +Attaching to prometheus, peer1.org1.example.com, peer0.org1.example.com, peer1.org2.example.com, peer0.org2.example.com, fabric-cli, orderer0.example.com +prometheus | level=info ts=2019-01-09T07:44:07.9767839Z caller=main.go:243 msg="Starting Prometheus" version="(version=2.6.0, branch=HEAD, revision=dbd1d58c894775c0788470944b818cc724f550fb)" +prometheus | level=info ts=2019-01-09T07:44:07.9768989Z caller=main.go:244 build_context="(go=go1.11.3, user=root@bf5760470f13, date=20181217-15:14:46)" +prometheus | level=info ts=2019-01-09T07:44:07.9793537Z 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-09T07:44:07.9794628Z caller=main.go:246 fd_limits="(soft=1048576, hard=1048576)" +prometheus | level=info ts=2019-01-09T07:44:07.9795304Z caller=main.go:247 vm_limits="(soft=unlimited, hard=unlimited)" +prometheus | level=info ts=2019-01-09T07:44:07.9865289Z caller=main.go:561 msg="Starting TSDB ..." +prometheus | level=info ts=2019-01-09T07:44:07.9870514Z caller=web.go:429 component=web msg="Start listening for connections" address=0.0.0.0:9090 +prometheus | level=info ts=2019-01-09T07:44:07.9998757Z caller=main.go:571 msg="TSDB started" +peer1.org1.example.com | [001 01-09 07:44:06.55 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.4 +peer1.org1.example.com | OS/Arch: linux/amd64 +peer1.org1.example.com | Chaincode: +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 07:44:06.56 UTC] [%{longpkg}] %{callpath} -> INFO Initializing ledger mgmt +peer1.org1.example.com | [003 01-09 07:44:06.56 UTC] [%{longpkg}] %{callpath} -> INFO Initializing ledger provider +peer1.org1.example.com | [004 01-09 07:44:06.65 UTC] [%{longpkg}] %{callpath} -> INFO ledger provider Initialized +peer1.org1.example.com | [005 01-09 07:44:06.70 UTC] [%{longpkg}] %{callpath} -> INFO ledger mgmt initialized +peer1.org1.example.com | [006 01-09 07:44:06.70 UTC] [%{longpkg}] %{callpath} -> INFO Auto-detected peer address: 172.24.0.6:7051 +peer1.org1.example.com | [007 01-09 07:44:06.71 UTC] [%{longpkg}] %{callpath} -> INFO Returning peer1.org1.example.com:7051 +peer1.org1.example.com | [008 01-09 07:44:06.71 UTC] [%{longpkg}] %{callpath} -> INFO Auto-detected peer address: 172.24.0.6:7051 +peer1.org1.example.com | [009 01-09 07:44:06.71 UTC] [%{longpkg}] %{callpath} -> INFO Returning peer1.org1.example.com:7051 +peer1.org1.example.com | [00a 01-09 07:44:06.73 UTC] [%{longpkg}] %{callpath} -> INFO Starting peer with TLS enabled +peer1.org1.example.com | [00b 01-09 07:44:06.74 UTC] [%{longpkg}] %{callpath} -> INFO Entering computeChaincodeEndpoint with peerHostname: peer1.org1.example.com +peer1.org1.example.com | [00c 01-09 07:44:06.75 UTC] [%{longpkg}] %{callpath} -> INFO Exit with ccEndpoint: peer1.org1.example.com:7052 +peer1.org1.example.com | [00d 01-09 07:44:06.76 UTC] [%{longpkg}] %{callpath} -> INFO system chaincode lscc(github.com/hyperledger/fabric/core/scc/lscc) registered +peer1.org1.example.com | [00e 01-09 07:44:06.76 UTC] [%{longpkg}] %{callpath} -> INFO system chaincode cscc(github.com/hyperledger/fabric/core/scc/cscc) registered +peer1.org1.example.com | [00f 01-09 07:44:06.76 UTC] [%{longpkg}] %{callpath} -> INFO system chaincode qscc(github.com/hyperledger/fabric/core/scc/qscc) registered +peer1.org1.example.com | [010 01-09 07:44:06.76 UTC] [%{longpkg}] %{callpath} -> INFO system chaincode +lifecycle(github.com/hyperledger/fabric/core/chaincode/lifecycle) registered +peer1.org1.example.com | [011 01-09 07:44:06.78 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 07:44:06.78 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: 482094cf2bc8367e587f6a273f0b737644cb755b4d5befb5716353f673ecbd10, Metadata: +peer1.org1.example.com | [013 01-09 07:44:06.78 UTC] [%{longpkg}] %{callpath} -> INFO Gossip instance peer1.org1.example.com:7051 started +peer1.org1.example.com | [014 01-09 07:44:06.79 UTC] [%{longpkg}] %{callpath} -> INFO system chaincode lscc/(github.com/hyperledger/fabric/core/scc/lscc) deployed +peer1.org1.example.com | [015 01-09 07:44:06.79 UTC] [%{longpkg}] %{callpath} -> INFO Init CSCC +peer1.org1.example.com | [016 01-09 07:44:06.79 UTC] [%{longpkg}] %{callpath} -> INFO system chaincode cscc/(github.com/hyperledger/fabric/core/scc/cscc) deployed +peer1.org1.example.com | [017 01-09 07:44:06.79 UTC] [%{longpkg}] %{callpath} -> INFO Init QSCC +peer1.org1.example.com | [018 01-09 07:44:06.79 UTC] [%{longpkg}] %{callpath} -> INFO system chaincode qscc/(github.com/hyperledger/fabric/core/scc/qscc) deployed +peer1.org1.example.com | [019 01-09 07:44:06.80 UTC] [%{longpkg}] %{callpath} -> INFO system chaincode +lifecycle/(github.com/hyperledger/fabric/core/chaincode/lifecycle) deployed +peer1.org1.example.com | [01a 01-09 07:44:06.80 UTC] [%{longpkg}] %{callpath} -> INFO Deployed system chaincodes +peer1.org1.example.com | [01b 01-09 07:44:06.80 UTC] [%{longpkg}] %{callpath} -> INFO Created with config TLS: true, authCacheMaxSize: 1000, authCachePurgeRatio: 0.750000 +peer1.org1.example.com | [01c 01-09 07:44:06.81 UTC] [%{longpkg}] %{callpath} -> INFO Discovery service activated +peer1.org1.example.com | [01d 01-09 07:44:06.81 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 07:44:06.81 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 07:44:12.08 UTC] [%{longpkg}] %{callpath} -> INFO [][44ffef96] Entry chaincode: name:"cscc" +peer1.org1.example.com | [020 01-09 07:44:12.09 UTC] [%{longpkg}] %{callpath} -> INFO Creating ledger [businesschannel] with genesis block +peer1.org1.example.com | [021 01-09 07:44:12.10 UTC] [%{longpkg}] %{callpath} -> INFO Getting block information from block storage +peer1.org1.example.com | [022 01-09 07:44:12.13 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Committed block [0] with 1 transaction(s) in 24ms (state_validation=1ms block_commit=16ms state_commit=3ms) +peer1.org1.example.com | [023 01-09 07:44:12.13 UTC] [%{longpkg}] %{callpath} -> INFO Created ledger [businesschannel] with genesis block +peer1.org1.example.com | [024 01-09 07:44:12.15 UTC] [%{longpkg}] %{callpath} -> INFO Joining gossip network of channel businesschannel with 2 organizations +peer1.org1.example.com | [025 01-09 07:44:12.15 UTC] [%{longpkg}] %{callpath} -> INFO No configured anchor peers of Org1MSP for channel businesschannel to learn about +peer1.org1.example.com | [026 01-09 07:44:12.15 UTC] [%{longpkg}] %{callpath} -> INFO No configured anchor peers of Org2MSP for channel businesschannel to learn about +peer1.org1.example.com | [027 01-09 07:44:12.18 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 07:44:12.18 UTC] [%{longpkg}] %{callpath} -> INFO system chaincode lscc/businesschannel(github.com/hyperledger/fabric/core/scc/lscc) deployed +peer1.org1.example.com | [029 01-09 07:44:12.18 UTC] [%{longpkg}] %{callpath} -> INFO Init CSCC +peer1.org1.example.com | [02a 01-09 07:44:12.18 UTC] [%{longpkg}] %{callpath} -> INFO system chaincode cscc/businesschannel(github.com/hyperledger/fabric/core/scc/cscc) deployed +peer1.org1.example.com | [02b 01-09 07:44:12.18 UTC] [%{longpkg}] %{callpath} -> INFO Init QSCC +peer1.org1.example.com | [02c 01-09 07:44:12.18 UTC] [%{longpkg}] %{callpath} -> INFO system chaincode qscc/businesschannel(github.com/hyperledger/fabric/core/scc/qscc) deployed +peer1.org1.example.com | [02d 01-09 07:44:12.18 UTC] [%{longpkg}] %{callpath} -> INFO system chaincode +lifecycle/businesschannel(github.com/hyperledger/fabric/core/chaincode/lifecycle) deployed +peer1.org1.example.com | [02e 01-09 07:44:12.18 UTC] [%{longpkg}] %{callpath} -> INFO [][44ffef96] Exit chaincode: name:"cscc" (102ms) +peer1.org1.example.com | [02f 01-09 07:44:12.18 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T07:44:12.08Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.24.0.7:57284", "grpc.code": "OK", "grpc.call_duration": "108.5292ms"} +peer1.org1.example.com | [030 01-09 07:44:13.87 UTC] [%{longpkg}] %{callpath} -> INFO [][29b48e55] Entry chaincode: name:"cscc" +peer1.org1.example.com | [031 01-09 07:44:13.87 UTC] [%{longpkg}] %{callpath} -> INFO [][29b48e55] Exit chaincode: name:"cscc" (1ms) +peer1.org1.example.com | [032 01-09 07:44:13.87 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T07:44:13.87Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.24.0.7:57292", "grpc.code": "OK", "grpc.call_duration": "2.7148ms"} +peer1.org1.example.com | [033 01-09 07:44:14.97 UTC] [%{longpkg}] %{callpath} -> INFO [][53082434] Entry chaincode: name:"qscc" +peer1.org1.example.com | [034 01-09 07:44:14.98 UTC] [%{longpkg}] %{callpath} -> INFO [][53082434] Exit chaincode: name:"qscc" (3ms) +prometheus | level=info ts=2019-01-09T07:44:08.0003409Z caller=main.go:631 msg="Loading configuration file" filename=prometheus.yml +prometheus | level=info ts=2019-01-09T07:44:08.0062875Z caller=main.go:657 msg="Completed loading of configuration file" filename=prometheus.yml +prometheus | level=info ts=2019-01-09T07:44:08.006858Z caller=main.go:530 msg="Server is ready to receive web requests." +peer1.org1.example.com | [035 01-09 07:44:14.98 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T07:44:14.978Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.24.0.7:57300", "grpc.code": "OK", "grpc.call_duration": "4.3661ms"} +peer1.org1.example.com | [036 01-09 07:44:17.15 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 07:44:17.90 UTC] [%{longpkg}] %{callpath} -> INFO 482094cf2bc8367e587f6a273f0b737644cb755b4d5befb5716353f673ecbd10 : Some peer is already a leader +peer1.org1.example.com | [038 01-09 07:44:17.94 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Received block [1] from buffer +peer1.org1.example.com | [039 01-09 07:44:17.97 UTC] [%{longpkg}] %{callpath} -> INFO Joining gossip network of channel businesschannel with 2 organizations +peer1.org1.example.com | [03a 01-09 07:44:17.97 UTC] [%{longpkg}] %{callpath} -> INFO Learning about the configured anchor peers of Org1MSP for channel businesschannel : [{peer0.org1.example.com 7051}] +peer1.org1.example.com | [03b 01-09 07:44:17.97 UTC] [%{longpkg}] %{callpath} -> INFO No configured anchor peers of Org2MSP for channel businesschannel to learn about +peer1.org1.example.com | [03c 01-09 07:44:17.98 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 07:44:18.01 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Validated block [1] in 67ms +peer1.org1.example.com | [03e 01-09 07:44:18.04 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Committed block [1] with 1 transaction(s) in 23ms (state_validation=1ms block_commit=13ms state_commit=4ms) +peer1.org1.example.com | [03f 01-09 07:44:18.35 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T07:44:18.353Z", "grpc.service": "gossip.Gossip", "grpc.method": "Ping", "grpc.request_deadline": "2019-01-09T07:44:20.351Z", "grpc.peer_address": "172.24.0.5:55882", "grpc.peer_subject": "CN=peer0.org1.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "272.6µs"} +peer1.org1.example.com | [040 01-09 07:44:18.44 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Received block [2] from buffer +peer1.org1.example.com | [041 01-09 07:44:18.50 UTC] [%{longpkg}] %{callpath} -> INFO Joining gossip network of channel businesschannel with 2 organizations +peer1.org1.example.com | [042 01-09 07:44:18.50 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 01-09 07:44:18.50 UTC] [%{longpkg}] %{callpath} -> INFO Learning about the configured anchor peers of Org2MSP for channel businesschannel : [{peer0.org2.example.com 7051}] +peer1.org1.example.com | [044 01-09 07:44:18.53 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T07:44:18.359Z", "grpc.service": "gossip.Gossip", "grpc.method": "GossipStream", "grpc.peer_address": "172.24.0.5:55882", "grpc.peer_subject": "CN=peer0.org1.example.com,L=San Francisco,ST=California,C=US", "error": "EOF", "grpc.code": "Unknown", "grpc.call_duration": "170.2975ms"} +peer1.org1.example.com | [045 01-09 07:44:18.53 UTC] [%{longpkg}] %{callpath} -> WARN Failed to update ordering service endpoints, due to Channel with businesschannel id was not found +peer1.org1.example.com | [046 01-09 07:44:18.56 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Validated block [2] in 109ms +peer1.org1.example.com | [047 01-09 07:44:18.62 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Committed block [2] with 1 transaction(s) in 61ms (state_validation=1ms block_commit=46ms state_commit=5ms) +peer1.org1.example.com | [048 01-09 07:44:22.11 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 | [049 01-09 07:44:22.84 UTC] [%{longpkg}] %{callpath} -> INFO [][024e59bf] Entry chaincode: name:"lscc" +peer1.org1.example.com | [04a 01-09 07:44:22.84 UTC] [%{longpkg}] %{callpath} -> INFO Installed Chaincode [exp02] Version [1.0] to peer +peer1.org1.example.com | [04b 01-09 07:44:22.84 UTC] [%{longpkg}] %{callpath} -> INFO [][024e59bf] Exit chaincode: name:"lscc" (3ms) +peer1.org1.example.com | [04c 01-09 07:44:22.84 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T07:44:22.84Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.24.0.7:57362", "grpc.code": "OK", "grpc.call_duration": "4.9976ms"} +peer1.org1.example.com | [04d 01-09 07:44:32.11 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 | [04e 01-09 07:45:09.95 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Received block [3] from buffer +peer1.org1.example.com | [04f 01-09 07:45:09.96 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Validated block [3] in 5ms +peer1.org1.example.com | [050 01-09 07:45:09.96 UTC] [%{longpkg}] %{callpath} -> INFO Channel [businesschannel]: Handling deploy or update of chaincode [exp02] +peer1.org1.example.com | [051 01-09 07:45:09.98 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Committed block [3] with 1 transaction(s) in 26ms (state_validation=2ms block_commit=16ms state_commit=3ms) +peer1.org1.example.com | [052 01-09 07:45:57.54 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Received block [4] from buffer +peer1.org1.example.com | [053 01-09 07:45:57.54 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Validated block [4] in 2ms +peer1.org1.example.com | [054 01-09 07:45:57.59 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Committed block [4] with 1 transaction(s) in 42ms (state_validation=0ms block_commit=36ms state_commit=2ms) +peer1.org1.example.com | [055 01-09 07:46:00.25 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Received block [5] from buffer +peer1.org1.example.com | [056 01-09 07:46:00.26 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Validated block [5] in 10ms +peer1.org1.example.com | [057 01-09 07:46:00.30 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Committed block [5] with 1 transaction(s) in 29ms (state_validation=4ms block_commit=17ms state_commit=5ms) +peer1.org1.example.com | [058 01-09 07:46:14.67 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Received block [6] from buffer +peer1.org1.example.com | [059 01-09 07:46:14.67 UTC] [%{longpkg}] %{callpath} -> WARN De-duplicating identity [Org1MSP4a990d9ddc475ae0c719a406e0fbf388bcf3fe81bfd34a9c11f3a18eb4a4ed23] at index 2 in signature set +peer1.org1.example.com | [05a 01-09 07:46:14.68 UTC] [%{longpkg}] %{callpath} -> WARN De-duplicating identity [Org1MSP4a990d9ddc475ae0c719a406e0fbf388bcf3fe81bfd34a9c11f3a18eb4a4ed23] at index 2 in signature set +peer1.org1.example.com | [05b 01-09 07:46:14.75 UTC] [%{longpkg}] %{callpath} -> INFO Joining gossip network of channel businesschannel with 3 organizations +peer1.org1.example.com | [05c 01-09 07:46:14.75 UTC] [%{longpkg}] %{callpath} -> INFO Learning about the configured anchor peers of Org1MSP for channel businesschannel : [{peer0.org1.example.com 7051}] +peer1.org1.example.com | [05d 01-09 07:46:14.75 UTC] [%{longpkg}] %{callpath} -> INFO Learning about the configured anchor peers of Org2MSP for channel businesschannel : [{peer0.org2.example.com 7051}] +peer1.org1.example.com | [05e 01-09 07:46:14.75 UTC] [%{longpkg}] %{callpath} -> INFO No configured anchor peers of Org3MSP for channel businesschannel to learn about +peer1.org1.example.com | [05f 01-09 07:46:14.75 UTC] [%{longpkg}] %{callpath} -> WARN Failed to update ordering service endpoints, due to Channel with businesschannel id was not found +peer1.org1.example.com | [060 01-09 07:46:14.84 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Validated block [6] in 173ms +peer1.org1.example.com | [061 01-09 07:46:14.85 UTC] [%{longpkg}] %{callpath} -> WARN peer0.org2.example.com:7051, PKIid:08a78261d5cf98650084a8b632cf100db1b4fe2b3a3cff312a132fcf2ef0ec05 isn't responsive: EOF +peer0.org1.example.com | [001 01-09 07:44:07.01 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.4 +peer0.org1.example.com | OS/Arch: linux/amd64 +peer0.org1.example.com | Chaincode: +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 07:44:07.02 UTC] [%{longpkg}] %{callpath} -> INFO Initializing ledger mgmt +peer0.org1.example.com | [003 01-09 07:44:07.02 UTC] [%{longpkg}] %{callpath} -> INFO Initializing ledger provider +peer0.org1.example.com | [004 01-09 07:44:07.11 UTC] [%{longpkg}] %{callpath} -> INFO ledger provider Initialized +peer0.org1.example.com | [005 01-09 07:44:07.15 UTC] [%{longpkg}] %{callpath} -> INFO ledger mgmt initialized +peer0.org1.example.com | [006 01-09 07:44:07.15 UTC] [%{longpkg}] %{callpath} -> INFO Auto-detected peer address: 172.24.0.5:7051 +peer0.org1.example.com | [007 01-09 07:44:07.15 UTC] [%{longpkg}] %{callpath} -> INFO Returning peer0.org1.example.com:7051 +peer0.org1.example.com | [008 01-09 07:44:07.15 UTC] [%{longpkg}] %{callpath} -> INFO Auto-detected peer address: 172.24.0.5:7051 +peer0.org1.example.com | [009 01-09 07:44:07.15 UTC] [%{longpkg}] %{callpath} -> INFO Returning peer0.org1.example.com:7051 +peer0.org1.example.com | [00a 01-09 07:44:07.17 UTC] [%{longpkg}] %{callpath} -> INFO Starting peer with TLS enabled +peer0.org1.example.com | [00b 01-09 07:44:07.18 UTC] [%{longpkg}] %{callpath} -> INFO Entering computeChaincodeEndpoint with peerHostname: peer0.org1.example.com +peer0.org1.example.com | [00c 01-09 07:44:07.18 UTC] [%{longpkg}] %{callpath} -> INFO Exit with ccEndpoint: peer0.org1.example.com:7052 +peer0.org1.example.com | [00d 01-09 07:44:07.20 UTC] [%{longpkg}] %{callpath} -> INFO system chaincode lscc(github.com/hyperledger/fabric/core/scc/lscc) registered +peer1.org1.example.com | [062 01-09 07:46:14.85 UTC] [%{longpkg}] %{callpath} -> WARN Entering [08a78261d5cf98650084a8b632cf100db1b4fe2b3a3cff312a132fcf2ef0ec05] +peer1.org1.example.com | [063 01-09 07:46:14.85 UTC] [%{longpkg}] %{callpath} -> WARN Closing connection to Endpoint: peer0.org2.example.com:7051, InternalEndpoint: , PKI-ID: 08a78261d5cf98650084a8b632cf100db1b4fe2b3a3cff312a132fcf2ef0ec05, Metadata: +peer1.org1.example.com | [064 01-09 07:46:14.85 UTC] [%{longpkg}] %{callpath} -> WARN Exiting +peer1.org1.example.com | [065 01-09 07:46:14.89 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Committed block [6] with 1 transaction(s) in 49ms (state_validation=0ms block_commit=35ms state_commit=6ms) +peer1.org1.example.com | [066 01-09 07:46:15.17 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T07:46:15.171Z", "grpc.service": "gossip.Gossip", "grpc.method": "Ping", "grpc.request_deadline": "2019-01-09T07:46:17.169Z", "grpc.peer_address": "172.24.0.5:56140", "grpc.peer_subject": "CN=peer0.org1.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "422.3µs"} +peer1.org1.example.com | [067 01-09 07:46:15.74 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T07:46:15.744Z", "grpc.service": "gossip.Gossip", "grpc.method": "Ping", "grpc.request_deadline": "2019-01-09T07:46:17.743Z", "grpc.peer_address": "172.24.0.3:52662", "grpc.peer_subject": "CN=peer0.org2.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "161.9µs"} +peer1.org1.example.com | [068 01-09 07:46:15.84 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T07:46:15.751Z", "grpc.service": "gossip.Gossip", "grpc.method": "GossipStream", "grpc.peer_address": "172.24.0.3:52662", "grpc.peer_subject": "CN=peer0.org2.example.com,L=San Francisco,ST=California,C=US", "error": "EOF", "grpc.code": "Unknown", "grpc.call_duration": "91.8861ms"} +peer1.org1.example.com | [069 01-09 07:46:28.41 UTC] [%{longpkg}] %{callpath} -> INFO [][445a73f3] Entry chaincode: name:"cscc" +peer1.org1.example.com | [06a 01-09 07:46:28.41 UTC] [%{longpkg}] %{callpath} -> INFO [][445a73f3] Exit chaincode: name:"cscc" (2ms) +peer1.org1.example.com | [06b 01-09 07:46:28.41 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T07:46:28.414Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.24.0.7:57640", "grpc.code": "OK", "grpc.call_duration": "3.4454ms"} +peer1.org1.example.com | [06c 01-09 07:46:30.17 UTC] [%{longpkg}] %{callpath} -> INFO [][1b9ef250] Entry chaincode: name:"qscc" +peer1.org1.example.com | [06d 01-09 07:46:30.18 UTC] [%{longpkg}] %{callpath} -> INFO [][1b9ef250] Exit chaincode: name:"qscc" (3ms) +peer1.org1.example.com | [06e 01-09 07:46:30.18 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T07:46:30.177Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.24.0.7:57648", "grpc.code": "OK", "grpc.call_duration": "3.4606ms"} +peer0.org1.example.com | [00e 01-09 07:44:07.20 UTC] [%{longpkg}] %{callpath} -> INFO system chaincode cscc(github.com/hyperledger/fabric/core/scc/cscc) registered +peer0.org1.example.com | [00f 01-09 07:44:07.20 UTC] [%{longpkg}] %{callpath} -> INFO system chaincode qscc(github.com/hyperledger/fabric/core/scc/qscc) registered +peer0.org1.example.com | [010 01-09 07:44:07.20 UTC] [%{longpkg}] %{callpath} -> INFO system chaincode +lifecycle(github.com/hyperledger/fabric/core/chaincode/lifecycle) registered +peer0.org1.example.com | [011 01-09 07:44:07.21 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 07:44:07.22 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: 099f13cbe2db0d065da1feceffb3833bdda3e3ec7893a40a37b60bd0b54245d9, Metadata: +peer0.org1.example.com | [013 01-09 07:44:07.22 UTC] [%{longpkg}] %{callpath} -> INFO Gossip instance peer0.org1.example.com:7051 started +peer0.org1.example.com | [014 01-09 07:44:07.23 UTC] [%{longpkg}] %{callpath} -> INFO system chaincode lscc/(github.com/hyperledger/fabric/core/scc/lscc) deployed +peer0.org1.example.com | [015 01-09 07:44:07.24 UTC] [%{longpkg}] %{callpath} -> INFO Init CSCC +peer0.org1.example.com | [016 01-09 07:44:07.24 UTC] [%{longpkg}] %{callpath} -> INFO system chaincode cscc/(github.com/hyperledger/fabric/core/scc/cscc) deployed +peer0.org1.example.com | [017 01-09 07:44:07.24 UTC] [%{longpkg}] %{callpath} -> INFO Init QSCC +peer0.org1.example.com | [018 01-09 07:44:07.24 UTC] [%{longpkg}] %{callpath} -> INFO system chaincode qscc/(github.com/hyperledger/fabric/core/scc/qscc) deployed +peer0.org1.example.com | [019 01-09 07:44:07.24 UTC] [%{longpkg}] %{callpath} -> INFO system chaincode +lifecycle/(github.com/hyperledger/fabric/core/chaincode/lifecycle) deployed +peer0.org1.example.com | [01a 01-09 07:44:07.24 UTC] [%{longpkg}] %{callpath} -> INFO Deployed system chaincodes +peer0.org1.example.com | [01b 01-09 07:44:07.24 UTC] [%{longpkg}] %{callpath} -> INFO Created with config TLS: true, authCacheMaxSize: 1000, authCachePurgeRatio: 0.750000 +peer0.org1.example.com | [01c 01-09 07:44:07.24 UTC] [%{longpkg}] %{callpath} -> INFO Discovery service activated +peer0.org1.example.com | [01d 01-09 07:44:07.24 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 07:44:07.24 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 07:44:07.79 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T07:44:07.798Z", "grpc.service": "gossip.Gossip", "grpc.method": "Ping", "grpc.request_deadline": "2019-01-09T07:44:09.798Z", "grpc.peer_address": "172.24.0.6:47286", "grpc.peer_subject": "CN=peer1.org1.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "234.2µs"} +peer0.org1.example.com | [020 01-09 07:44:07.81 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T07:44:07.801Z", "grpc.service": "gossip.Gossip", "grpc.method": "GossipStream", "grpc.request_deadline": "2019-01-09T07:44:17.801Z", "grpc.peer_address": "172.24.0.6:47286", "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": "8.8676ms"} +peer0.org1.example.com | [021 01-09 07:44:07.83 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T07:44:07.835Z", "grpc.service": "gossip.Gossip", "grpc.method": "Ping", "grpc.request_deadline": "2019-01-09T07:44:09.834Z", "grpc.peer_address": "172.24.0.6:47288", "grpc.peer_subject": "CN=peer1.org1.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "143.9µs"} +peer0.org1.example.com | [022 01-09 07:44:11.76 UTC] [%{longpkg}] %{callpath} -> INFO [][1e38ec1b] Entry chaincode: name:"cscc" +peer0.org1.example.com | [023 01-09 07:44:11.76 UTC] [%{longpkg}] %{callpath} -> INFO Creating ledger [businesschannel] with genesis block +peer0.org1.example.com | [024 01-09 07:44:11.77 UTC] [%{longpkg}] %{callpath} -> INFO Getting block information from block storage +peer0.org1.example.com | [025 01-09 07:44:11.79 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Committed block [0] with 1 transaction(s) in 20ms (state_validation=1ms block_commit=12ms state_commit=3ms) +peer0.org1.example.com | [026 01-09 07:44:11.80 UTC] [%{longpkg}] %{callpath} -> INFO Created ledger [businesschannel] with genesis block +peer0.org1.example.com | [027 01-09 07:44:11.82 UTC] [%{longpkg}] %{callpath} -> INFO Joining gossip network of channel businesschannel with 2 organizations +peer0.org1.example.com | [028 01-09 07:44:11.83 UTC] [%{longpkg}] %{callpath} -> INFO No configured anchor peers of Org1MSP for channel businesschannel to learn about +peer0.org1.example.com | [029 01-09 07:44:11.83 UTC] [%{longpkg}] %{callpath} -> INFO No configured anchor peers of Org2MSP for channel businesschannel to learn about +peer0.org1.example.com | [02a 01-09 07:44:11.87 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 07:44:11.87 UTC] [%{longpkg}] %{callpath} -> INFO system chaincode lscc/businesschannel(github.com/hyperledger/fabric/core/scc/lscc) deployed +peer0.org1.example.com | [02c 01-09 07:44:11.87 UTC] [%{longpkg}] %{callpath} -> INFO Init CSCC +peer0.org1.example.com | [02d 01-09 07:44:11.88 UTC] [%{longpkg}] %{callpath} -> INFO system chaincode cscc/businesschannel(github.com/hyperledger/fabric/core/scc/cscc) deployed +peer0.org1.example.com | [02e 01-09 07:44:11.88 UTC] [%{longpkg}] %{callpath} -> INFO Init QSCC +peer0.org1.example.com | [02f 01-09 07:44:11.88 UTC] [%{longpkg}] %{callpath} -> INFO system chaincode qscc/businesschannel(github.com/hyperledger/fabric/core/scc/qscc) deployed +peer0.org1.example.com | [030 01-09 07:44:11.88 UTC] [%{longpkg}] %{callpath} -> INFO system chaincode +lifecycle/businesschannel(github.com/hyperledger/fabric/core/chaincode/lifecycle) deployed +peer0.org1.example.com | [031 01-09 07:44:11.88 UTC] [%{longpkg}] %{callpath} -> INFO [][1e38ec1b] Exit chaincode: name:"cscc" (117ms) +peer0.org1.example.com | [032 01-09 07:44:11.88 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T07:44:11.764Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.24.0.7:54838", "grpc.code": "OK", "grpc.call_duration": "119.5777ms"} +peer0.org1.example.com | [033 01-09 07:44:13.68 UTC] [%{longpkg}] %{callpath} -> INFO [][f3e627fe] Entry chaincode: name:"cscc" +peer0.org1.example.com | [034 01-09 07:44:13.68 UTC] [%{longpkg}] %{callpath} -> INFO [][f3e627fe] Exit chaincode: name:"cscc" (1ms) +peer0.org1.example.com | [035 01-09 07:44:13.68 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T07:44:13.685Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.24.0.7:54846", "grpc.code": "OK", "grpc.call_duration": "3.4696ms"} +peer0.org1.example.com | [036 01-09 07:44:14.76 UTC] [%{longpkg}] %{callpath} -> INFO [][e7a87509] Entry chaincode: name:"qscc" +peer0.org1.example.com | [037 01-09 07:44:14.76 UTC] [%{longpkg}] %{callpath} -> INFO [][e7a87509] Exit chaincode: name:"qscc" (3ms) +peer0.org1.example.com | [038 01-09 07:44:14.76 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T07:44:14.763Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.24.0.7:54854", "grpc.code": "OK", "grpc.call_duration": "5.1907ms"} +peer0.org1.example.com | [039 01-09 07:44:16.82 UTC] [%{longpkg}] %{callpath} -> INFO Membership view has changed. peers went online: [[peer1.org1.example.com:7051]] , current view: [[peer1.org1.example.com:7051]] +orderer0.example.com | 2019-01-09 07:44:02.686 UTC [localconfig] completeInitialization -> INFO 001 Kafka.Version unset, setting to 0.10.2.0 +peer0.org1.example.com | [03a 01-09 07:44:17.88 UTC] [%{longpkg}] %{callpath} -> INFO 099f13cbe2db0d065da1feceffb3833bdda3e3ec7893a40a37b60bd0b54245d9 : Becoming a leader +orderer0.example.com | [002 01-09 07:44:02.87 UTC] [%{longpkg}] %{callpath} -> INFO Orderer config values: +peer1.org2.example.com | [001 01-09 07:44:06.10 UTC] [%{longpkg}] %{callpath} -> INFO Starting peer: +peer0.org1.example.com | [03b 01-09 07:44:17.88 UTC] [%{longpkg}] %{callpath} -> INFO Elected as a leader, starting delivery service for channel businesschannel +orderer0.example.com | General.LedgerType = "file" peer1.org2.example.com | Version: 1.4.0 peer1.org2.example.com | Commit SHA: development build -peer1.org2.example.com | Go version: go1.10.4 +peer0.org1.example.com | [03c 01-09 07:44:17.93 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Received block [1] from buffer +peer1.org2.example.com | Go version: go1.11.4 +peer0.org1.example.com | [03d 01-09 07:44:17.96 UTC] [%{longpkg}] %{callpath} -> INFO Joining gossip network of channel businesschannel with 2 organizations +orderer0.example.com | General.ListenAddress = "0.0.0.0" peer1.org2.example.com | OS/Arch: linux/amd64 +peer0.org1.example.com | [03e 01-09 07:44:17.96 UTC] [%{longpkg}] %{callpath} -> INFO No configured anchor peers of Org2MSP for channel businesschannel to learn about +peer0.org2.example.com | [001 01-09 07:44:05.27 UTC] [%{longpkg}] %{callpath} -> INFO Starting peer: +orderer0.example.com | General.ListenPort = 7050 peer1.org2.example.com | Chaincode: -peer1.org2.example.com | Base Image Version: 0.4.13 +peer0.org1.example.com | [03f 01-09 07:44:17.96 UTC] [%{longpkg}] %{callpath} -> INFO Learning about the configured anchor peers of Org1MSP for channel businesschannel : [{peer0.org1.example.com 7051}] +peer0.org2.example.com | Version: 1.4.0 +orderer0.example.com | General.TLS.Enabled = true peer1.org2.example.com | Base Docker Namespace: hyperledger peer1.org2.example.com | Base Docker Label: org.hyperledger.fabric +peer0.org1.example.com | [040 01-09 07:44:17.96 UTC] [%{longpkg}] %{callpath} -> INFO Anchor peer with same endpoint, skipping connecting to myself +peer0.org2.example.com | Commit SHA: development build +orderer0.example.com | General.TLS.PrivateKey = "/var/hyperledger/orderer/tls/server.key" peer1.org2.example.com | Docker Namespace: hyperledger -peer1.org2.example.com | [002 12-19 08:04:04.03 UTC] [%{longpkg}] %{callpath} -> INFO Initializing ledger mgmt -peer1.org2.example.com | [003 12-19 08:04:04.03 UTC] [%{longpkg}] %{callpath} -> INFO Initializing ledger provider -peer1.org2.example.com | [004 12-19 08:04:04.19 UTC] [%{longpkg}] %{callpath} -> INFO ledger provider Initialized -peer1.org2.example.com | [005 12-19 08:04:04.20 UTC] [%{longpkg}] %{callpath} -> INFO ledger mgmt initialized -peer1.org2.example.com | [006 12-19 08:04:04.21 UTC] [%{longpkg}] %{callpath} -> INFO Auto-detected peer address: 172.18.0.4:7051 -peer1.org2.example.com | [007 12-19 08:04:04.21 UTC] [%{longpkg}] %{callpath} -> INFO Returning peer1.org2.example.com:7051 -peer1.org2.example.com | [008 12-19 08:04:04.21 UTC] [%{longpkg}] %{callpath} -> INFO Auto-detected peer address: 172.18.0.4:7051 -peer1.org2.example.com | [009 12-19 08:04:04.21 UTC] [%{longpkg}] %{callpath} -> INFO Returning peer1.org2.example.com:7051 -peer1.org2.example.com | [00a 12-19 08:04:04.23 UTC] [%{longpkg}] %{callpath} -> INFO Starting peer with TLS enabled -peer1.org2.example.com | [00b 12-19 08:04:04.24 UTC] [%{longpkg}] %{callpath} -> INFO Entering computeChaincodeEndpoint with peerHostname: peer1.org2.example.com -peer1.org2.example.com | [00c 12-19 08:04:04.24 UTC] [%{longpkg}] %{callpath} -> INFO Exit with ccEndpoint: peer1.org2.example.com:7052 -peer1.org2.example.com | [00d 12-19 08:04:04.26 UTC] [%{longpkg}] %{callpath} -> INFO system chaincode lscc(github.com/hyperledger/fabric/core/scc/lscc) registered -peer1.org2.example.com | [00e 12-19 08:04:04.26 UTC] [%{longpkg}] %{callpath} -> INFO system chaincode cscc(github.com/hyperledger/fabric/core/scc/cscc) registered -peer1.org2.example.com | [00f 12-19 08:04:04.26 UTC] [%{longpkg}] %{callpath} -> INFO system chaincode qscc(github.com/hyperledger/fabric/core/scc/qscc) registered -peer1.org2.example.com | [010 12-19 08:04:04.26 UTC] [%{longpkg}] %{callpath} -> INFO system chaincode +lifecycle(github.com/hyperledger/fabric/core/chaincode/lifecycle) registered -peer1.org2.example.com | [011 12-19 08:04:04.28 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 12-19 08:04:04.29 UTC] [%{longpkg}] %{callpath} -> INFO Creating gossip service with self membership of {peer1.org2.example.com:7051 [] [48 42 225 250 187 91 252 241 18 217 56 184 223 103 3 182 60 202 212 225 217 138 37 66 7 69 36 111 99 22 164 158] peer1.org2.example.com:7051 } -peer1.org2.example.com | [013 12-19 08:04:04.29 UTC] [%{longpkg}] %{callpath} -> INFO Gossip instance peer1.org2.example.com:7051 started -peer1.org2.example.com | [014 12-19 08:04:04.30 UTC] [%{longpkg}] %{callpath} -> INFO system chaincode lscc/(github.com/hyperledger/fabric/core/scc/lscc) deployed -peer1.org2.example.com | [015 12-19 08:04:04.30 UTC] [%{longpkg}] %{callpath} -> INFO Init CSCC -peer1.org2.example.com | [016 12-19 08:04:04.30 UTC] [%{longpkg}] %{callpath} -> INFO system chaincode cscc/(github.com/hyperledger/fabric/core/scc/cscc) deployed -peer1.org2.example.com | [017 12-19 08:04:04.30 UTC] [%{longpkg}] %{callpath} -> INFO Init QSCC -peer1.org2.example.com | [018 12-19 08:04:04.30 UTC] [%{longpkg}] %{callpath} -> INFO system chaincode qscc/(github.com/hyperledger/fabric/core/scc/qscc) deployed -peer1.org2.example.com | [019 12-19 08:04:04.32 UTC] [%{longpkg}] %{callpath} -> INFO system chaincode +lifecycle/(github.com/hyperledger/fabric/core/chaincode/lifecycle) deployed -peer1.org2.example.com | [01a 12-19 08:04:04.32 UTC] [%{longpkg}] %{callpath} -> INFO Deployed system chaincodes -peer1.org2.example.com | [01b 12-19 08:04:04.33 UTC] [%{longpkg}] %{callpath} -> INFO Created with config TLS: true, authCacheMaxSize: 1000, authCachePurgeRatio: 0.750000 -peer1.org2.example.com | [01c 12-19 08:04:04.33 UTC] [%{longpkg}] %{callpath} -> INFO Discovery service activated -peer1.org2.example.com | [01d 12-19 08:04:04.33 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 12-19 08:04:04.33 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 12-19 08:04:09.17 UTC] [%{longpkg}] %{callpath} -> INFO [][e53c8379] Entry chaincode: name:"cscc" -peer1.org2.example.com | [020 12-19 08:04:09.17 UTC] [%{longpkg}] %{callpath} -> INFO Creating ledger [businesschannel] with genesis block -peer1.org2.example.com | [021 12-19 08:04:09.17 UTC] [%{longpkg}] %{callpath} -> INFO Getting block information from block storage -peer1.org2.example.com | [022 12-19 08:04:09.19 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Committed block [0] with 1 transaction(s) in 13ms (state_validation=1ms block_commit=8ms state_commit=2ms) -peer1.org2.example.com | [023 12-19 08:04:09.19 UTC] [%{longpkg}] %{callpath} -> INFO Created ledger [businesschannel] with genesis block -peer1.org2.example.com | [024 12-19 08:04:09.20 UTC] [%{longpkg}] %{callpath} -> INFO Joining gossip network of channel businesschannel with 2 organizations -peer1.org2.example.com | [025 12-19 08:04:09.20 UTC] [%{longpkg}] %{callpath} -> INFO No configured anchor peers of Org1MSP for channel businesschannel to learn about -peer1.org2.example.com | [026 12-19 08:04:09.20 UTC] [%{longpkg}] %{callpath} -> INFO No configured anchor peers of Org2MSP for channel businesschannel to learn about -peer1.org2.example.com | [027 12-19 08:04:09.23 UTC] [%{longpkg}] %{callpath} -> INFO Updating metadata information, current ledger sequence is at = 0, next expected block is = 1 -peer1.org2.example.com | [028 12-19 08:04:09.24 UTC] [%{longpkg}] %{callpath} -> INFO system chaincode lscc/businesschannel(github.com/hyperledger/fabric/core/scc/lscc) deployed -peer1.org2.example.com | [029 12-19 08:04:09.24 UTC] [%{longpkg}] %{callpath} -> INFO Init CSCC -peer1.org2.example.com | [02a 12-19 08:04:09.24 UTC] [%{longpkg}] %{callpath} -> INFO system chaincode cscc/businesschannel(github.com/hyperledger/fabric/core/scc/cscc) deployed -peer1.org2.example.com | [02b 12-19 08:04:09.24 UTC] [%{longpkg}] %{callpath} -> INFO Init QSCC -peer1.org2.example.com | [02c 12-19 08:04:09.24 UTC] [%{longpkg}] %{callpath} -> INFO system chaincode qscc/businesschannel(github.com/hyperledger/fabric/core/scc/qscc) deployed -peer1.org2.example.com | [02d 12-19 08:04:09.24 UTC] [%{longpkg}] %{callpath} -> INFO system chaincode +lifecycle/businesschannel(github.com/hyperledger/fabric/core/chaincode/lifecycle) deployed -peer1.org2.example.com | [02e 12-19 08:04:09.24 UTC] [%{longpkg}] %{callpath} -> INFO [][e53c8379] Exit chaincode: name:"cscc" (76ms) -peer1.org2.example.com | [02f 12-19 08:04:10.23 UTC] [%{longpkg}] %{callpath} -> INFO [][11d0d61e] Entry chaincode: name:"cscc" -peer1.org2.example.com | [030 12-19 08:04:10.23 UTC] [%{longpkg}] %{callpath} -> INFO [][11d0d61e] Exit chaincode: name:"cscc" (1ms) -peer1.org2.example.com | [031 12-19 08:04:11.17 UTC] [%{longpkg}] %{callpath} -> INFO [][876f6ba1] Entry chaincode: name:"qscc" -peer1.org2.example.com | [032 12-19 08:04:11.17 UTC] [%{longpkg}] %{callpath} -> INFO [][876f6ba1] Exit chaincode: name:"qscc" (1ms) -peer1.org2.example.com | [033 12-19 08:04:14.84 UTC] [%{longpkg}] %{callpath} -> WARN Message GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes isn't valid -peer1.org2.example.com | [034 12-19 08:04:15.01 UTC] [%{longpkg}] %{callpath} -> INFO [48 42 225 250 187 91 252 241 18 217 56 184 223 103 3 182 60 202 212 225 217 138 37 66 7 69 36 111 99 22 164 158] : Some peer is already a leader -peer1.org2.example.com | [035 12-19 08:04:15.03 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Received block [1] from buffer -peer1.org2.example.com | [036 12-19 08:04:15.04 UTC] [%{longpkg}] %{callpath} -> WARN Message GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes isn't valid -peer1.org2.example.com | [037 12-19 08:04:15.06 UTC] [%{longpkg}] %{callpath} -> INFO Joining gossip network of channel businesschannel with 2 organizations -peer1.org2.example.com | [038 12-19 08:04:15.06 UTC] [%{longpkg}] %{callpath} -> INFO Learning about the configured anchor peers of Org1MSP for channel businesschannel : [{peer0.org1.example.com 7051}] -peer1.org2.example.com | [039 12-19 08:04:15.06 UTC] [%{longpkg}] %{callpath} -> INFO No configured anchor peers of Org2MSP for channel businesschannel to learn about -peer1.org2.example.com | [03a 12-19 08:04:15.06 UTC] [%{longpkg}] %{callpath} -> WARN Failed to update ordering service endpoints, due to Channel with businesschannel id was not found -peer1.org2.example.com | [03b 12-19 08:04:15.07 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Validated block [1] in 41ms -peer1.org2.example.com | [03c 12-19 08:04:15.10 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Committed block [1] with 1 transaction(s) in 21ms (state_validation=2ms block_commit=10ms state_commit=4ms) -peer1.org2.example.com | [03d 12-19 08:04:15.10 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Received block [2] from buffer -peer1.org2.example.com | [03e 12-19 08:04:15.12 UTC] [%{longpkg}] %{callpath} -> INFO Joining gossip network of channel businesschannel with 2 organizations -peer1.org2.example.com | [03f 12-19 08:04:15.12 UTC] [%{longpkg}] %{callpath} -> INFO Learning about the configured anchor peers of Org2MSP for channel businesschannel : [{peer0.org2.example.com 7051}] -peer1.org2.example.com | [040 12-19 08:04:15.12 UTC] [%{longpkg}] %{callpath} -> INFO Learning about the configured anchor peers of Org1MSP for channel businesschannel : [{peer0.org1.example.com 7051}] -peer1.org2.example.com | [041 12-19 08:04:15.14 UTC] [%{longpkg}] %{callpath} -> WARN Failed to update ordering service endpoints, due to Channel with businesschannel id was not found -peer0.org2.example.com | [001 12-19 08:04:04.93 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.10.4 -peer0.org2.example.com | OS/Arch: linux/amd64 -peer0.org2.example.com | Chaincode: -peer0.org2.example.com | Base Image Version: 0.4.13 -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 12-19 08:04:04.93 UTC] [%{longpkg}] %{callpath} -> INFO Initializing ledger mgmt -peer0.org2.example.com | [003 12-19 08:04:04.93 UTC] [%{longpkg}] %{callpath} -> INFO Initializing ledger provider -peer0.org2.example.com | [004 12-19 08:04:05.00 UTC] [%{longpkg}] %{callpath} -> INFO ledger provider Initialized -peer0.org2.example.com | [005 12-19 08:04:05.02 UTC] [%{longpkg}] %{callpath} -> INFO ledger mgmt initialized -peer0.org2.example.com | [006 12-19 08:04:05.02 UTC] [%{longpkg}] %{callpath} -> INFO Auto-detected peer address: 172.18.0.7:7051 -peer0.org2.example.com | [007 12-19 08:04:05.02 UTC] [%{longpkg}] %{callpath} -> INFO Returning peer0.org2.example.com:7051 -peer0.org2.example.com | [008 12-19 08:04:05.02 UTC] [%{longpkg}] %{callpath} -> INFO Auto-detected peer address: 172.18.0.7:7051 -peer0.org2.example.com | [009 12-19 08:04:05.03 UTC] [%{longpkg}] %{callpath} -> INFO Returning peer0.org2.example.com:7051 -peer0.org2.example.com | [00a 12-19 08:04:05.04 UTC] [%{longpkg}] %{callpath} -> INFO Starting peer with TLS enabled -peer0.org2.example.com | [00b 12-19 08:04:05.05 UTC] [%{longpkg}] %{callpath} -> INFO Entering computeChaincodeEndpoint with peerHostname: peer0.org2.example.com -peer0.org2.example.com | [00c 12-19 08:04:05.05 UTC] [%{longpkg}] %{callpath} -> INFO Exit with ccEndpoint: peer0.org2.example.com:7052 -peer0.org2.example.com | [00d 12-19 08:04:05.06 UTC] [%{longpkg}] %{callpath} -> INFO system chaincode lscc(github.com/hyperledger/fabric/core/scc/lscc) registered -peer0.org2.example.com | [00e 12-19 08:04:05.06 UTC] [%{longpkg}] %{callpath} -> INFO system chaincode cscc(github.com/hyperledger/fabric/core/scc/cscc) registered -peer0.org2.example.com | [00f 12-19 08:04:05.06 UTC] [%{longpkg}] %{callpath} -> INFO system chaincode qscc(github.com/hyperledger/fabric/core/scc/qscc) registered -peer0.org2.example.com | [010 12-19 08:04:05.06 UTC] [%{longpkg}] %{callpath} -> INFO system chaincode +lifecycle(github.com/hyperledger/fabric/core/chaincode/lifecycle) registered -peer0.org2.example.com | [011 12-19 08:04:05.07 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 12-19 08:04:05.07 UTC] [%{longpkg}] %{callpath} -> INFO Creating gossip service with self membership of {peer0.org2.example.com:7051 [] [8 167 130 97 213 207 152 101 0 132 168 182 50 207 16 13 177 180 254 43 58 60 255 49 42 19 47 207 46 240 236 5] peer0.org2.example.com:7051 } -peer0.org2.example.com | [013 12-19 08:04:05.07 UTC] [%{longpkg}] %{callpath} -> INFO Gossip instance peer0.org2.example.com:7051 started -peer0.org2.example.com | [014 12-19 08:04:05.08 UTC] [%{longpkg}] %{callpath} -> INFO system chaincode lscc/(github.com/hyperledger/fabric/core/scc/lscc) deployed -peer0.org2.example.com | [015 12-19 08:04:05.08 UTC] [%{longpkg}] %{callpath} -> INFO Init CSCC -peer0.org2.example.com | [016 12-19 08:04:05.08 UTC] [%{longpkg}] %{callpath} -> INFO system chaincode cscc/(github.com/hyperledger/fabric/core/scc/cscc) deployed -peer0.org2.example.com | [017 12-19 08:04:05.08 UTC] [%{longpkg}] %{callpath} -> INFO Init QSCC -peer0.org2.example.com | [018 12-19 08:04:05.08 UTC] [%{longpkg}] %{callpath} -> INFO system chaincode qscc/(github.com/hyperledger/fabric/core/scc/qscc) deployed -peer0.org2.example.com | [019 12-19 08:04:05.08 UTC] [%{longpkg}] %{callpath} -> INFO system chaincode +lifecycle/(github.com/hyperledger/fabric/core/chaincode/lifecycle) deployed -peer0.org2.example.com | [01a 12-19 08:04:05.08 UTC] [%{longpkg}] %{callpath} -> INFO Deployed system chaincodes -peer0.org2.example.com | [01b 12-19 08:04:05.08 UTC] [%{longpkg}] %{callpath} -> INFO Created with config TLS: true, authCacheMaxSize: 1000, authCachePurgeRatio: 0.750000 -peer0.org2.example.com | [01c 12-19 08:04:05.08 UTC] [%{longpkg}] %{callpath} -> INFO Discovery service activated -peer0.org2.example.com | [01d 12-19 08:04:05.08 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 12-19 08:04:05.08 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 12-19 08:04:08.93 UTC] [%{longpkg}] %{callpath} -> INFO [][e7b23461] Entry chaincode: name:"cscc" -peer0.org2.example.com | [020 12-19 08:04:08.93 UTC] [%{longpkg}] %{callpath} -> INFO Creating ledger [businesschannel] with genesis block -peer0.org2.example.com | [021 12-19 08:04:08.94 UTC] [%{longpkg}] %{callpath} -> INFO Getting block information from block storage -peer0.org2.example.com | [022 12-19 08:04:08.96 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Committed block [0] with 1 transaction(s) in 15ms (state_validation=1ms block_commit=8ms state_commit=3ms) -peer0.org2.example.com | [023 12-19 08:04:08.96 UTC] [%{longpkg}] %{callpath} -> INFO Created ledger [businesschannel] with genesis block -peer0.org2.example.com | [024 12-19 08:04:08.97 UTC] [%{longpkg}] %{callpath} -> INFO Joining gossip network of channel businesschannel with 2 organizations -peer0.org2.example.com | [025 12-19 08:04:08.97 UTC] [%{longpkg}] %{callpath} -> INFO No configured anchor peers of Org1MSP for channel businesschannel to learn about -peer0.org2.example.com | [026 12-19 08:04:08.97 UTC] [%{longpkg}] %{callpath} -> INFO No configured anchor peers of Org2MSP for channel businesschannel to learn about -peer0.org2.example.com | [027 12-19 08:04:08.99 UTC] [%{longpkg}] %{callpath} -> INFO Updating metadata information, current ledger sequence is at = 0, next expected block is = 1 -peer0.org2.example.com | [028 12-19 08:04:08.99 UTC] [%{longpkg}] %{callpath} -> INFO system chaincode lscc/businesschannel(github.com/hyperledger/fabric/core/scc/lscc) deployed -peer0.org2.example.com | [029 12-19 08:04:08.99 UTC] [%{longpkg}] %{callpath} -> INFO Init CSCC -peer0.org2.example.com | [02a 12-19 08:04:08.99 UTC] [%{longpkg}] %{callpath} -> INFO system chaincode cscc/businesschannel(github.com/hyperledger/fabric/core/scc/cscc) deployed -peer0.org2.example.com | [02b 12-19 08:04:08.99 UTC] [%{longpkg}] %{callpath} -> INFO Init QSCC -peer0.org2.example.com | [02c 12-19 08:04:08.99 UTC] [%{longpkg}] %{callpath} -> INFO system chaincode qscc/businesschannel(github.com/hyperledger/fabric/core/scc/qscc) deployed -peer0.org2.example.com | [02d 12-19 08:04:08.99 UTC] [%{longpkg}] %{callpath} -> INFO system chaincode +lifecycle/businesschannel(github.com/hyperledger/fabric/core/chaincode/lifecycle) deployed -peer0.org2.example.com | [02e 12-19 08:04:09.00 UTC] [%{longpkg}] %{callpath} -> INFO [][e7b23461] Exit chaincode: name:"cscc" (66ms) -peer0.org2.example.com | [02f 12-19 08:04:10.05 UTC] [%{longpkg}] %{callpath} -> INFO [][477b461e] Entry chaincode: name:"cscc" -peer0.org2.example.com | [030 12-19 08:04:10.05 UTC] [%{longpkg}] %{callpath} -> INFO [][477b461e] Exit chaincode: name:"cscc" (1ms) -peer0.org2.example.com | [031 12-19 08:04:11.02 UTC] [%{longpkg}] %{callpath} -> INFO [][5be4a163] Entry chaincode: name:"qscc" -peer0.org2.example.com | [032 12-19 08:04:11.02 UTC] [%{longpkg}] %{callpath} -> INFO [][5be4a163] Exit chaincode: name:"qscc" (1ms) -peer0.org2.example.com | [033 12-19 08:04:15.00 UTC] [%{longpkg}] %{callpath} -> INFO [8 167 130 97 213 207 152 101 0 132 168 182 50 207 16 13 177 180 254 43 58 60 255 49 42 19 47 207 46 240 236 5] : Becoming a leader -peer0.org2.example.com | [034 12-19 08:04:15.00 UTC] [%{longpkg}] %{callpath} -> INFO Elected as a leader, starting delivery service for channel businesschannel -peer0.org2.example.com | [035 12-19 08:04:15.02 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Received block [1] from buffer -peer0.org2.example.com | [036 12-19 08:04:15.05 UTC] [%{longpkg}] %{callpath} -> INFO Joining gossip network of channel businesschannel with 2 organizations -peer0.org2.example.com | [037 12-19 08:04:15.05 UTC] [%{longpkg}] %{callpath} -> INFO Learning about the configured anchor peers of Org1MSP for channel businesschannel : [{peer0.org1.example.com 7051}] -peer0.org2.example.com | [038 12-19 08:04:15.05 UTC] [%{longpkg}] %{callpath} -> INFO No configured anchor peers of Org2MSP for channel businesschannel to learn about -peer0.org2.example.com | [039 12-19 08:04:15.08 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Validated block [1] in 58ms -peer0.org2.example.com | [03a 12-19 08:04:15.13 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Committed block [1] with 1 transaction(s) in 30ms (state_validation=0ms block_commit=24ms state_commit=2ms) -peer0.org2.example.com | [03b 12-19 08:04:15.13 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Received block [2] from buffer -peer0.org2.example.com | [03c 12-19 08:04:15.17 UTC] [%{longpkg}] %{callpath} -> INFO Joining gossip network of channel businesschannel with 2 organizations -peer0.org2.example.com | [03d 12-19 08:04:15.17 UTC] [%{longpkg}] %{callpath} -> INFO Learning about the configured anchor peers of Org1MSP for channel businesschannel : [{peer0.org1.example.com 7051}] -peer0.org2.example.com | [03e 12-19 08:04:15.17 UTC] [%{longpkg}] %{callpath} -> INFO Learning about the configured anchor peers of Org2MSP for channel businesschannel : [{peer0.org2.example.com 7051}] -peer0.org2.example.com | [03f 12-19 08:04:15.17 UTC] [%{longpkg}] %{callpath} -> INFO Anchor peer with same endpoint, skipping connecting to myself -peer0.org2.example.com | [040 12-19 08:04:15.19 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Validated block [2] in 57ms -peer0.org2.example.com | [041 12-19 08:04:15.21 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Committed block [2] with 1 transaction(s) in 20ms (state_validation=0ms block_commit=14ms state_commit=2ms) -peer0.org2.example.com | [042 12-19 08:04:15.22 UTC] [%{longpkg}] %{callpath} -> WARN peer0.org1.example.com:7051, PKIid:[9 159 19 203 226 219 13 6 93 161 254 206 255 179 131 59 221 163 227 236 120 147 164 10 55 182 11 208 181 66 69 217] isn't responsive: EOF -peer0.org2.example.com | [043 12-19 08:04:15.22 UTC] [%{longpkg}] %{callpath} -> WARN Entering [[9 159 19 203 226 219 13 6 93 161 254 206 255 179 131 59 221 163 227 236 120 147 164 10 55 182 11 208 181 66 69 217]] -peer0.org2.example.com | [044 12-19 08:04:15.22 UTC] [%{longpkg}] %{callpath} -> WARN Closing connection to Endpoint: peer0.org1.example.com:7051, InternalEndpoint: , PKI-ID: [9 159 19 203 226 219 13 6 93 161 254 206 255 179 131 59 221 163 227 236 120 147 164 10 55 182 11 208 181 66 69 217], Metadata: [] -peer0.org2.example.com | [045 12-19 08:04:15.22 UTC] [%{longpkg}] %{callpath} -> WARN Exiting -peer0.org2.example.com | [046 12-19 08:04:20.38 UTC] [%{longpkg}] %{callpath} -> INFO [][b6b1992b] Entry chaincode: name:"lscc" -peer0.org2.example.com | [047 12-19 08:04:20.38 UTC] [%{longpkg}] %{callpath} -> INFO Installed Chaincode [exp02] Version [1.0] to peer -peer0.org2.example.com | [048 12-19 08:04:20.38 UTC] [%{longpkg}] %{callpath} -> INFO [][b6b1992b] Exit chaincode: name:"lscc" (2ms) -peer0.org2.example.com | [049 12-19 08:05:04.75 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Received block [3] from buffer -peer1.org1.example.com | [001 12-19 08:04:04.42 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.10.4 -peer1.org1.example.com | OS/Arch: linux/amd64 -peer1.org1.example.com | Chaincode: -peer1.org1.example.com | Base Image Version: 0.4.13 -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 12-19 08:04:04.42 UTC] [%{longpkg}] %{callpath} -> INFO Initializing ledger mgmt -peer1.org1.example.com | [003 12-19 08:04:04.42 UTC] [%{longpkg}] %{callpath} -> INFO Initializing ledger provider -peer1.org1.example.com | [004 12-19 08:04:04.62 UTC] [%{longpkg}] %{callpath} -> INFO ledger provider Initialized -peer1.org1.example.com | [005 12-19 08:04:04.65 UTC] [%{longpkg}] %{callpath} -> INFO ledger mgmt initialized -peer1.org1.example.com | [006 12-19 08:04:04.65 UTC] [%{longpkg}] %{callpath} -> INFO Auto-detected peer address: 172.18.0.5:7051 -peer1.org1.example.com | [007 12-19 08:04:04.65 UTC] [%{longpkg}] %{callpath} -> INFO Returning peer1.org1.example.com:7051 -peer1.org1.example.com | [008 12-19 08:04:04.65 UTC] [%{longpkg}] %{callpath} -> INFO Auto-detected peer address: 172.18.0.5:7051 -peer1.org1.example.com | [009 12-19 08:04:04.65 UTC] [%{longpkg}] %{callpath} -> INFO Returning peer1.org1.example.com:7051 -peer1.org1.example.com | [00a 12-19 08:04:04.68 UTC] [%{longpkg}] %{callpath} -> INFO Starting peer with TLS enabled -peer1.org1.example.com | [00b 12-19 08:04:04.70 UTC] [%{longpkg}] %{callpath} -> INFO Entering computeChaincodeEndpoint with peerHostname: peer1.org1.example.com -peer1.org1.example.com | [00c 12-19 08:04:04.71 UTC] [%{longpkg}] %{callpath} -> INFO Exit with ccEndpoint: peer1.org1.example.com:7052 -peer1.org1.example.com | [00d 12-19 08:04:04.77 UTC] [%{longpkg}] %{callpath} -> INFO system chaincode lscc(github.com/hyperledger/fabric/core/scc/lscc) registered -peer1.org1.example.com | [00e 12-19 08:04:04.77 UTC] [%{longpkg}] %{callpath} -> INFO system chaincode cscc(github.com/hyperledger/fabric/core/scc/cscc) registered -peer1.org1.example.com | [00f 12-19 08:04:04.77 UTC] [%{longpkg}] %{callpath} -> INFO system chaincode qscc(github.com/hyperledger/fabric/core/scc/qscc) registered -peer1.org1.example.com | [010 12-19 08:04:04.77 UTC] [%{longpkg}] %{callpath} -> INFO system chaincode +lifecycle(github.com/hyperledger/fabric/core/chaincode/lifecycle) registered -peer1.org1.example.com | [011 12-19 08:04:04.79 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 12-19 08:04:04.82 UTC] [%{longpkg}] %{callpath} -> INFO Creating gossip service with self membership of {peer1.org1.example.com:7051 [] [72 32 148 207 43 200 54 126 88 127 106 39 63 11 115 118 68 203 117 91 77 91 239 181 113 99 83 246 115 236 189 16] peer1.org1.example.com:7051 } -peer1.org1.example.com | [013 12-19 08:04:04.82 UTC] [%{longpkg}] %{callpath} -> INFO Gossip instance peer1.org1.example.com:7051 started -peer1.org1.example.com | [014 12-19 08:04:04.83 UTC] [%{longpkg}] %{callpath} -> INFO system chaincode lscc/(github.com/hyperledger/fabric/core/scc/lscc) deployed -peer1.org1.example.com | [015 12-19 08:04:04.83 UTC] [%{longpkg}] %{callpath} -> INFO Init CSCC -peer1.org1.example.com | [016 12-19 08:04:04.83 UTC] [%{longpkg}] %{callpath} -> INFO system chaincode cscc/(github.com/hyperledger/fabric/core/scc/cscc) deployed -peer1.org1.example.com | [017 12-19 08:04:04.84 UTC] [%{longpkg}] %{callpath} -> INFO Init QSCC -peer1.org1.example.com | [018 12-19 08:04:04.84 UTC] [%{longpkg}] %{callpath} -> INFO system chaincode qscc/(github.com/hyperledger/fabric/core/scc/qscc) deployed -peer1.org1.example.com | [019 12-19 08:04:04.84 UTC] [%{longpkg}] %{callpath} -> INFO system chaincode +lifecycle/(github.com/hyperledger/fabric/core/chaincode/lifecycle) deployed -peer1.org1.example.com | [01a 12-19 08:04:04.84 UTC] [%{longpkg}] %{callpath} -> INFO Deployed system chaincodes -peer1.org1.example.com | [01b 12-19 08:04:04.84 UTC] [%{longpkg}] %{callpath} -> INFO Created with config TLS: true, authCacheMaxSize: 1000, authCachePurgeRatio: 0.750000 -peer1.org1.example.com | [01c 12-19 08:04:04.84 UTC] [%{longpkg}] %{callpath} -> INFO Discovery service activated -peer1.org1.example.com | [01d 12-19 08:04:04.84 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 12-19 08:04:04.84 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 12-19 08:04:08.69 UTC] [%{longpkg}] %{callpath} -> INFO [][34f82fc9] Entry chaincode: name:"cscc" -peer1.org1.example.com | [020 12-19 08:04:08.70 UTC] [%{longpkg}] %{callpath} -> INFO Creating ledger [businesschannel] with genesis block -peer1.org1.example.com | [021 12-19 08:04:08.70 UTC] [%{longpkg}] %{callpath} -> INFO Getting block information from block storage -peer1.org1.example.com | [022 12-19 08:04:08.73 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Committed block [0] with 1 transaction(s) in 19ms (state_validation=0ms block_commit=13ms state_commit=2ms) -peer1.org1.example.com | [023 12-19 08:04:08.73 UTC] [%{longpkg}] %{callpath} -> INFO Created ledger [businesschannel] with genesis block -peer1.org1.example.com | [024 12-19 08:04:08.74 UTC] [%{longpkg}] %{callpath} -> INFO Joining gossip network of channel businesschannel with 2 organizations -peer1.org1.example.com | [025 12-19 08:04:08.74 UTC] [%{longpkg}] %{callpath} -> INFO No configured anchor peers of Org1MSP for channel businesschannel to learn about -peer1.org1.example.com | [026 12-19 08:04:08.74 UTC] [%{longpkg}] %{callpath} -> INFO No configured anchor peers of Org2MSP for channel businesschannel to learn about -peer1.org1.example.com | [027 12-19 08:04:08.76 UTC] [%{longpkg}] %{callpath} -> INFO Updating metadata information, current ledger sequence is at = 0, next expected block is = 1 -peer1.org1.example.com | [028 12-19 08:04:08.76 UTC] [%{longpkg}] %{callpath} -> INFO system chaincode lscc/businesschannel(github.com/hyperledger/fabric/core/scc/lscc) deployed -peer1.org1.example.com | [029 12-19 08:04:08.76 UTC] [%{longpkg}] %{callpath} -> INFO Init CSCC -peer1.org1.example.com | [02a 12-19 08:04:08.76 UTC] [%{longpkg}] %{callpath} -> INFO system chaincode cscc/businesschannel(github.com/hyperledger/fabric/core/scc/cscc) deployed -peer1.org1.example.com | [02b 12-19 08:04:08.76 UTC] [%{longpkg}] %{callpath} -> INFO Init QSCC -peer1.org1.example.com | [02c 12-19 08:04:08.76 UTC] [%{longpkg}] %{callpath} -> INFO system chaincode qscc/businesschannel(github.com/hyperledger/fabric/core/scc/qscc) deployed -peer1.org1.example.com | [02d 12-19 08:04:08.76 UTC] [%{longpkg}] %{callpath} -> INFO system chaincode +lifecycle/businesschannel(github.com/hyperledger/fabric/core/chaincode/lifecycle) deployed -peer1.org1.example.com | [02e 12-19 08:04:08.76 UTC] [%{longpkg}] %{callpath} -> INFO [][34f82fc9] Exit chaincode: name:"cscc" (68ms) -peer1.org1.example.com | [02f 12-19 08:04:09.88 UTC] [%{longpkg}] %{callpath} -> INFO [][a4f3909a] Entry chaincode: name:"cscc" -peer1.org1.example.com | [030 12-19 08:04:09.88 UTC] [%{longpkg}] %{callpath} -> INFO [][a4f3909a] Exit chaincode: name:"cscc" (1ms) -peer1.org1.example.com | [031 12-19 08:04:10.88 UTC] [%{longpkg}] %{callpath} -> INFO [][d611e06a] Entry chaincode: name:"qscc" -peer1.org1.example.com | [032 12-19 08:04:10.88 UTC] [%{longpkg}] %{callpath} -> INFO [][d611e06a] Exit chaincode: name:"qscc" (1ms) -peer1.org1.example.com | [033 12-19 08:04:14.49 UTC] [%{longpkg}] %{callpath} -> INFO [72 32 148 207 43 200 54 126 88 127 106 39 63 11 115 118 68 203 117 91 77 91 239 181 113 99 83 246 115 236 189 16] : Some peer is already a leader -peer1.org1.example.com | [034 12-19 08:04:14.50 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Received block [1] from buffer -peer1.org1.example.com | [035 12-19 08:04:14.50 UTC] [%{longpkg}] %{callpath} -> INFO Joining gossip network of channel businesschannel with 2 organizations -peer1.org1.example.com | [036 12-19 08:04:14.50 UTC] [%{longpkg}] %{callpath} -> INFO No configured anchor peers of Org2MSP for channel businesschannel to learn about -peer1.org1.example.com | [037 12-19 08:04:14.50 UTC] [%{longpkg}] %{callpath} -> INFO Learning about the configured anchor peers of Org1MSP for channel businesschannel : [{peer0.org1.example.com 7051}] -peer1.org1.example.com | [038 12-19 08:04:14.51 UTC] [%{longpkg}] %{callpath} -> WARN Failed to update ordering service endpoints, due to Channel with businesschannel id was not found -peer1.org1.example.com | [039 12-19 08:04:14.52 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Validated block [1] in 26ms -peer1.org1.example.com | [03a 12-19 08:04:14.54 UTC] [%{longpkg}] %{callpath} -> WARN peer0.org1.example.com:7051, PKIid:[9 159 19 203 226 219 13 6 93 161 254 206 255 179 131 59 221 163 227 236 120 147 164 10 55 182 11 208 181 66 69 217] isn't responsive: EOF -peer1.org1.example.com | [03b 12-19 08:04:14.54 UTC] [%{longpkg}] %{callpath} -> WARN Entering [[9 159 19 203 226 219 13 6 93 161 254 206 255 179 131 59 221 163 227 236 120 147 164 10 55 182 11 208 181 66 69 217]] -peer1.org1.example.com | [03c 12-19 08:04:14.54 UTC] [%{longpkg}] %{callpath} -> WARN Closing connection to Endpoint: peer0.org1.example.com:7051, InternalEndpoint: peer0.org1.example.com:7051, PKI-ID: [9 159 19 203 226 219 13 6 93 161 254 206 255 179 131 59 221 163 227 236 120 147 164 10 55 182 11 208 181 66 69 217], Metadata: [] -peer1.org1.example.com | [03d 12-19 08:04:14.54 UTC] [%{longpkg}] %{callpath} -> WARN Exiting -peer1.org1.example.com | [03e 12-19 08:04:14.55 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Committed block [1] with 1 transaction(s) in 25ms (state_validation=1ms block_commit=16ms state_commit=3ms) -peer1.org1.example.com | [03f 12-19 08:04:14.55 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Received block [2] from buffer -peer1.org1.example.com | [040 12-19 08:04:14.59 UTC] [%{longpkg}] %{callpath} -> INFO Joining gossip network of channel businesschannel with 2 organizations -peer1.org1.example.com | [041 12-19 08:04:14.59 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 12-19 08:04:14.59 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 12-19 08:04:14.60 UTC] [%{longpkg}] %{callpath} -> WARN Failed to update ordering service endpoints, due to Channel with businesschannel id was not found -peer1.org1.example.com | [044 12-19 08:04:14.64 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Validated block [2] in 91ms -peer1.org1.example.com | [045 12-19 08:04:14.68 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Committed block [2] with 1 transaction(s) in 33ms (state_validation=3ms block_commit=22ms state_commit=3ms) -peer1.org1.example.com | [046 12-19 08:04:19.59 UTC] [%{longpkg}] %{callpath} -> INFO [][96184a09] Entry chaincode: name:"lscc" -peer1.org1.example.com | [047 12-19 08:04:19.59 UTC] [%{longpkg}] %{callpath} -> INFO Installed Chaincode [exp02] Version [1.0] to peer -peer1.org1.example.com | [048 12-19 08:04:19.59 UTC] [%{longpkg}] %{callpath} -> INFO [][96184a09] Exit chaincode: name:"lscc" (2ms) -peer1.org1.example.com | [049 12-19 08:05:04.76 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Received block [3] from buffer -peer1.org1.example.com | [04a 12-19 08:05:04.77 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Validated block [3] in 2ms -peer1.org1.example.com | [04b 12-19 08:05:04.77 UTC] [%{longpkg}] %{callpath} -> INFO Channel [businesschannel]: Handling LSCC state update for chaincode [exp02] -peer1.org1.example.com | [04c 12-19 08:05:04.79 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Committed block [3] with 1 transaction(s) in 19ms (state_validation=1ms block_commit=12ms state_commit=2ms) -peer1.org1.example.com | [04d 12-19 08:05:48.56 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Received block [4] from buffer -peer1.org1.example.com | [04e 12-19 08:05:48.56 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Validated block [4] in 2ms -peer1.org1.example.com | [04f 12-19 08:05:48.60 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Committed block [4] with 1 transaction(s) in 37ms (state_validation=0ms block_commit=28ms state_commit=5ms) -peer1.org1.example.com | [050 12-19 08:05:51.87 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Received block [5] from buffer -peer1.org1.example.com | [051 12-19 08:05:51.87 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Validated block [5] in 1ms -peer1.org1.example.com | [052 12-19 08:05:51.91 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Committed block [5] with 1 transaction(s) in 39ms (state_validation=0ms block_commit=32ms state_commit=2ms) -peer1.org1.example.com | [053 12-19 08:06:09.88 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Received block [6] from buffer -peer1.org1.example.com | [054 12-19 08:06:09.89 UTC] [%{longpkg}] %{callpath} -> WARN De-duplicating identity 0a074f7267314d535012aa062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434b6a4343416447674177494241674952414e7a345049457a56423178717639624f744f614e2b3877436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5467784d6a45354d4463314f5441775768634e4d6a67784d6a45324d4463314f5441770a576a42734d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45504d4130474131554543784d47593278705a5735304d523877485159445651514444425a425a473170626b42760a636d63784c6d56345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a497a6a30444151634451674145335a79366a6a45590a4c69343562504b56416f5968506b64755567756930454c593943414d5a6b436464472f6f446a6e66584e5767614b526e7772365353653972773656356d534f730a4e4c4d37624c78744542612b634b4e4e4d45737744675944565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759440a5652306a42435177496f4167645848684e786650744f7a3835506c4832594972673639474a43565551777178344e557776796e6749503877436759494b6f5a490a7a6a30454177494452774177524149674b565078706c7162543842454a4475666f38483635367564584d2f53473048464c436e334c526b515341554349456e6f0a453356544f79725241425970626e3033384633644c58514d692f344e5a2f50317a49552b6d4b57560a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a at index 2 in signature set -peer1.org1.example.com | [055 12-19 08:06:09.89 UTC] [%{longpkg}] %{callpath} -> WARN De-duplicating identity 0a074f7267314d535012aa062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434b6a4343416447674177494241674952414e7a345049457a56423178717639624f744f614e2b3877436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5467784d6a45354d4463314f5441775768634e4d6a67784d6a45324d4463314f5441770a576a42734d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45504d4130474131554543784d47593278705a5735304d523877485159445651514444425a425a473170626b42760a636d63784c6d56345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a497a6a30444151634451674145335a79366a6a45590a4c69343562504b56416f5968506b64755567756930454c593943414d5a6b436464472f6f446a6e66584e5767614b526e7772365353653972773656356d534f730a4e4c4d37624c78744542612b634b4e4e4d45737744675944565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759440a5652306a42435177496f4167645848684e786650744f7a3835506c4832594972673639474a43565551777178344e557776796e6749503877436759494b6f5a490a7a6a30454177494452774177524149674b565078706c7162543842454a4475666f38483635367564584d2f53473048464c436e334c526b515341554349456e6f0a453356544f79725241425970626e3033384633644c58514d692f344e5a2f50317a49552b6d4b57560a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a at index 2 in signature set -peer1.org1.example.com | [056 12-19 08:06:09.94 UTC] [%{longpkg}] %{callpath} -> INFO Joining gossip network of channel businesschannel with 3 organizations -peer1.org1.example.com | [057 12-19 08:06:09.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 | [058 12-19 08:06:09.99 UTC] [%{longpkg}] %{callpath} -> INFO Learning about the configured anchor peers of Org2MSP for channel businesschannel : [{peer0.org2.example.com 7051}] -peer1.org1.example.com | [059 12-19 08:06:09.99 UTC] [%{longpkg}] %{callpath} -> INFO No configured anchor peers of Org3MSP for channel businesschannel to learn about -peer1.org1.example.com | [05a 12-19 08:06:09.99 UTC] [%{longpkg}] %{callpath} -> WARN Failed to update ordering service endpoints, due to Channel with businesschannel id was not found -peer1.org1.example.com | [05b 12-19 08:06:10.06 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Validated block [6] in 169ms -peer1.org1.example.com | [05c 12-19 08:06:10.09 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Committed block [6] with 1 transaction(s) in 37ms (state_validation=0ms block_commit=32ms state_commit=2ms) -peer1.org1.example.com | [05d 12-19 08:06:10.10 UTC] [%{longpkg}] %{callpath} -> WARN peer0.org2.example.com:7051, PKIid:[8 167 130 97 213 207 152 101 0 132 168 182 50 207 16 13 177 180 254 43 58 60 255 49 42 19 47 207 46 240 236 5] isn't responsive: EOF -peer1.org1.example.com | [05e 12-19 08:06:10.11 UTC] [%{longpkg}] %{callpath} -> WARN Entering [[8 167 130 97 213 207 152 101 0 132 168 182 50 207 16 13 177 180 254 43 58 60 255 49 42 19 47 207 46 240 236 5]] -peer1.org1.example.com | [05f 12-19 08:06:10.11 UTC] [%{longpkg}] %{callpath} -> WARN Closing connection to Endpoint: peer0.org2.example.com:7051, InternalEndpoint: , PKI-ID: [8 167 130 97 213 207 152 101 0 132 168 182 50 207 16 13 177 180 254 43 58 60 255 49 42 19 47 207 46 240 236 5], Metadata: [] -peer1.org1.example.com | [060 12-19 08:06:10.11 UTC] [%{longpkg}] %{callpath} -> WARN Exiting -peer1.org1.example.com | [061 12-19 08:06:10.16 UTC] [%{longpkg}] %{callpath} -> WARN peer0.org1.example.com:7051, PKIid:[9 159 19 203 226 219 13 6 93 161 254 206 255 179 131 59 221 163 227 236 120 147 164 10 55 182 11 208 181 66 69 217] isn't responsive: EOF -peer1.org1.example.com | [062 12-19 08:06:10.17 UTC] [%{longpkg}] %{callpath} -> WARN Entering [[9 159 19 203 226 219 13 6 93 161 254 206 255 179 131 59 221 163 227 236 120 147 164 10 55 182 11 208 181 66 69 217]] -peer1.org1.example.com | [063 12-19 08:06:10.17 UTC] [%{longpkg}] %{callpath} -> WARN Closing connection to Endpoint: peer0.org1.example.com:7051, InternalEndpoint: peer0.org1.example.com:7051, PKI-ID: [9 159 19 203 226 219 13 6 93 161 254 206 255 179 131 59 221 163 227 236 120 147 164 10 55 182 11 208 181 66 69 217], Metadata: [] -peer1.org1.example.com | [064 12-19 08:06:10.17 UTC] [%{longpkg}] %{callpath} -> WARN Exiting -peer1.org1.example.com | [065 12-19 08:06:25.16 UTC] [%{longpkg}] %{callpath} -> INFO [][625a099b] Entry chaincode: name:"cscc" -peer1.org1.example.com | [066 12-19 08:06:25.16 UTC] [%{longpkg}] %{callpath} -> INFO [][625a099b] Exit chaincode: name:"cscc" (1ms) -peer1.org1.example.com | [067 12-19 08:06:26.28 UTC] [%{longpkg}] %{callpath} -> INFO [][886ccb93] Entry chaincode: name:"qscc" -peer1.org1.example.com | [068 12-19 08:06:26.28 UTC] [%{longpkg}] %{callpath} -> INFO [][886ccb93] Exit chaincode: name:"qscc" (1ms) -peer0.org1.example.com | [04e 12-19 08:05:46.54 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][cec69b4f] Exit chaincode: name:"exp02" (7ms) -peer0.org1.example.com | [04f 12-19 08:05:48.55 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Received block [4] from buffer -peer0.org1.example.com | [050 12-19 08:05:48.55 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Validated block [4] in 0ms -peer0.org1.example.com | [051 12-19 08:05:48.60 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Committed block [4] with 1 transaction(s) in 43ms (state_validation=0ms block_commit=27ms state_commit=4ms) -peer0.org1.example.com | [052 12-19 08:05:50.08 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][5fc2faf1] Entry chaincode: name:"exp02" -peer0.org1.example.com | [053 12-19 08:05:50.09 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][5fc2faf1] Exit chaincode: name:"exp02" (2ms) -peer0.org1.example.com | [054 12-19 08:05:51.86 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Received block [5] from buffer -peer0.org1.example.com | [055 12-19 08:05:51.87 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Validated block [5] in 3ms -peer0.org1.example.com | [056 12-19 08:05:51.93 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Committed block [5] with 1 transaction(s) in 55ms (state_validation=0ms block_commit=48ms state_commit=4ms) -peer0.org1.example.com | [057 12-19 08:05:52.35 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][f1ea94bb] Entry chaincode: name:"exp02" -peer0.org1.example.com | [058 12-19 08:05:52.36 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][f1ea94bb] Exit chaincode: name:"exp02" (12ms) -peer0.org1.example.com | [059 12-19 08:05:53.24 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][b803f511] Entry chaincode: name:"lscc" -peer0.org1.example.com | [05a 12-19 08:05:53.24 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][b803f511] Exit chaincode: name:"lscc" (2ms) -peer0.org1.example.com | [05b 12-19 08:05:53.56 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][9a734770] Entry chaincode: name:"lscc" -peer0.org1.example.com | [05c 12-19 08:05:53.56 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][9a734770] Exit chaincode: name:"lscc" (1ms) -peer0.org1.example.com | [05d 12-19 08:05:53.97 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][977f4423] Entry chaincode: name:"lscc" -peer0.org1.example.com | [05e 12-19 08:05:53.97 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][977f4423] Exit chaincode: name:"lscc" (1ms) -peer0.org1.example.com | [05f 12-19 08:05:54.30 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][d5e86d42] Entry chaincode: name:"lscc" -peer0.org1.example.com | [060 12-19 08:05:54.30 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][d5e86d42] Exit chaincode: name:"lscc" (1ms) -peer0.org1.example.com | [061 12-19 08:05:54.61 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][bc113975] Entry chaincode: name:"lscc" -peer0.org1.example.com | [062 12-19 08:05:54.61 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][bc113975] Exit chaincode: name:"lscc" (1ms) -peer0.org1.example.com | [063 12-19 08:05:55.30 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][5a22e70a] Entry chaincode: name:"qscc" -peer0.org1.example.com | [064 12-19 08:05:55.30 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][5a22e70a] Exit chaincode: name:"qscc" (1ms) -peer0.org1.example.com | [065 12-19 08:05:55.85 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][d61eed8d] Entry chaincode: name:"qscc" -peer0.org1.example.com | [066 12-19 08:05:55.85 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][d61eed8d] Exit chaincode: name:"qscc" (1ms) -peer0.org1.example.com | [067 12-19 08:05:56.71 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][98f2376d] Entry chaincode: name:"cscc" -peer0.org1.example.com | [068 12-19 08:05:56.71 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][98f2376d] Exit chaincode: name:"cscc" (1ms) -peer0.org1.example.com | [069 12-19 08:05:57.32 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][4e0930c5] Entry chaincode: name:"cscc" -peer0.org1.example.com | [06a 12-19 08:05:57.32 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][4e0930c5] Exit chaincode: name:"cscc" (1ms) -peer0.org1.example.com | [06b 12-19 08:05:57.71 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][f01ce710] Entry chaincode: name:"cscc" -peer0.org1.example.com | [06c 12-19 08:05:57.71 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][f01ce710] Exit chaincode: name:"cscc" (1ms) -peer0.org1.example.com | [06d 12-19 08:06:09.87 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Received block [6] from buffer -peer0.org1.example.com | [06e 12-19 08:06:09.88 UTC] [%{longpkg}] %{callpath} -> WARN De-duplicating identity 0a074f7267314d535012aa062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434b6a4343416447674177494241674952414e7a345049457a56423178717639624f744f614e2b3877436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5467784d6a45354d4463314f5441775768634e4d6a67784d6a45324d4463314f5441770a576a42734d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45504d4130474131554543784d47593278705a5735304d523877485159445651514444425a425a473170626b42760a636d63784c6d56345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a497a6a30444151634451674145335a79366a6a45590a4c69343562504b56416f5968506b64755567756930454c593943414d5a6b436464472f6f446a6e66584e5767614b526e7772365353653972773656356d534f730a4e4c4d37624c78744542612b634b4e4e4d45737744675944565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759440a5652306a42435177496f4167645848684e786650744f7a3835506c4832594972673639474a43565551777178344e557776796e6749503877436759494b6f5a490a7a6a30454177494452774177524149674b565078706c7162543842454a4475666f38483635367564584d2f53473048464c436e334c526b515341554349456e6f0a453356544f79725241425970626e3033384633644c58514d692f344e5a2f50317a49552b6d4b57560a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a at index 2 in signature set -peer0.org1.example.com | [06f 12-19 08:06:09.88 UTC] [%{longpkg}] %{callpath} -> WARN De-duplicating identity 0a074f7267314d535012aa062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434b6a4343416447674177494241674952414e7a345049457a56423178717639624f744f614e2b3877436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5467784d6a45354d4463314f5441775768634e4d6a67784d6a45324d4463314f5441770a576a42734d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45504d4130474131554543784d47593278705a5735304d523877485159445651514444425a425a473170626b42760a636d63784c6d56345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a497a6a30444151634451674145335a79366a6a45590a4c69343562504b56416f5968506b64755567756930454c593943414d5a6b436464472f6f446a6e66584e5767614b526e7772365353653972773656356d534f730a4e4c4d37624c78744542612b634b4e4e4d45737744675944565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759440a5652306a42435177496f4167645848684e786650744f7a3835506c4832594972673639474a43565551777178344e557776796e6749503877436759494b6f5a490a7a6a30454177494452774177524149674b565078706c7162543842454a4475666f38483635367564584d2f53473048464c436e334c526b515341554349456e6f0a453356544f79725241425970626e3033384633644c58514d692f344e5a2f50317a49552b6d4b57560a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a at index 2 in signature set -peer0.org1.example.com | [070 12-19 08:06:09.96 UTC] [%{longpkg}] %{callpath} -> INFO Joining gossip network of channel businesschannel with 3 organizations -peer0.org1.example.com | [071 12-19 08:06:09.96 UTC] [%{longpkg}] %{callpath} -> INFO No configured anchor peers of Org3MSP for channel businesschannel to learn about -peer0.org1.example.com | [072 12-19 08:06:09.96 UTC] [%{longpkg}] %{callpath} -> INFO Learning about the configured anchor peers of Org1MSP for channel businesschannel : [{peer0.org1.example.com 7051}] -peer0.org1.example.com | [073 12-19 08:06:09.96 UTC] [%{longpkg}] %{callpath} -> INFO Anchor peer with same endpoint, skipping connecting to myself -peer0.org1.example.com | [074 12-19 08:06:09.96 UTC] [%{longpkg}] %{callpath} -> INFO Learning about the configured anchor peers of Org2MSP for channel businesschannel : [{peer0.org2.example.com 7051}] -peer0.org1.example.com | [075 12-19 08:06:10.01 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Validated block [6] in 137ms -peer0.org1.example.com | [076 12-19 08:06:10.13 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Committed block [6] with 1 transaction(s) in 125ms (state_validation=0ms block_commit=88ms state_commit=26ms) -peer0.org1.example.com | [077 12-19 08:06:24.87 UTC] [%{longpkg}] %{callpath} -> INFO [][a526aa94] Entry chaincode: name:"cscc" -peer0.org1.example.com | [078 12-19 08:06:24.87 UTC] [%{longpkg}] %{callpath} -> INFO [][a526aa94] Exit chaincode: name:"cscc" (0ms) -peer0.org1.example.com | [079 12-19 08:06:26.04 UTC] [%{longpkg}] %{callpath} -> INFO [][466c7876] Entry chaincode: name:"qscc" -peer0.org1.example.com | [07a 12-19 08:06:26.04 UTC] [%{longpkg}] %{callpath} -> INFO [][466c7876] Exit chaincode: name:"qscc" (1ms) -peer1.org2.example.com | [042 12-19 08:04:15.16 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Validated block [2] in 67ms -peer1.org2.example.com | [043 12-19 08:04:15.19 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Committed block [2] with 1 transaction(s) in 25ms (state_validation=0ms block_commit=14ms state_commit=5ms) -peer1.org2.example.com | [044 12-19 08:04:15.20 UTC] [%{longpkg}] %{callpath} -> WARN peer0.org1.example.com:7051, PKIid:[9 159 19 203 226 219 13 6 93 161 254 206 255 179 131 59 221 163 227 236 120 147 164 10 55 182 11 208 181 66 69 217] isn't responsive: EOF -peer1.org2.example.com | [045 12-19 08:04:15.20 UTC] [%{longpkg}] %{callpath} -> WARN Entering [[9 159 19 203 226 219 13 6 93 161 254 206 255 179 131 59 221 163 227 236 120 147 164 10 55 182 11 208 181 66 69 217]] -peer1.org2.example.com | [046 12-19 08:04:15.20 UTC] [%{longpkg}] %{callpath} -> WARN Closing connection to Endpoint: peer0.org1.example.com:7051, InternalEndpoint: , PKI-ID: [9 159 19 203 226 219 13 6 93 161 254 206 255 179 131 59 221 163 227 236 120 147 164 10 55 182 11 208 181 66 69 217], Metadata: [] -peer1.org2.example.com | [047 12-19 08:04:15.20 UTC] [%{longpkg}] %{callpath} -> WARN Exiting -peer1.org2.example.com | [048 12-19 08:04:16.30 UTC] [%{longpkg}] %{callpath} -> WARN peer0.org2.example.com:7051, PKIid:[8 167 130 97 213 207 152 101 0 132 168 182 50 207 16 13 177 180 254 43 58 60 255 49 42 19 47 207 46 240 236 5] isn't responsive: EOF -peer1.org2.example.com | [049 12-19 08:04:16.30 UTC] [%{longpkg}] %{callpath} -> WARN Entering [[8 167 130 97 213 207 152 101 0 132 168 182 50 207 16 13 177 180 254 43 58 60 255 49 42 19 47 207 46 240 236 5]] -peer1.org2.example.com | [04a 12-19 08:04:16.30 UTC] [%{longpkg}] %{callpath} -> WARN Closing connection to Endpoint: peer0.org2.example.com:7051, InternalEndpoint: peer0.org2.example.com:7051, PKI-ID: [8 167 130 97 213 207 152 101 0 132 168 182 50 207 16 13 177 180 254 43 58 60 255 49 42 19 47 207 46 240 236 5], Metadata: [] -peer1.org2.example.com | [04b 12-19 08:04:16.30 UTC] [%{longpkg}] %{callpath} -> WARN Exiting -peer1.org2.example.com | [04c 12-19 08:04:16.75 UTC] [%{longpkg}] %{callpath} -> WARN StateInfo message GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"H \224\317+\3106~X\177j'?\013svD\313u[M[\357\265qcS\366s\354\275\020" channel_MAC:"T\3374D\341/\263D<\211\300\037\211\362\237\230\203\335\305\273\244\010\216\305/5\016\276f)1$" properties: > , Envelope: 98 bytes, Signature: 70 bytes is found invalid: PKIID wasn't found -peer1.org2.example.com | [04d 12-19 08:04:16.75 UTC] [%{longpkg}] %{callpath} -> WARN Message GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"H \224\317+\3106~X\177j'?\013svD\313u[M[\357\265qcS\366s\354\275\020" channel_MAC:"T\3374D\341/\263D<\211\300\037\211\362\237\230\203\335\305\273\244\010\216\305/5\016\276f)1$" properties: > , Envelope: 98 bytes, Signature: 70 bytes isn't valid -peer1.org2.example.com | [04e 12-19 08:04:21.09 UTC] [%{longpkg}] %{callpath} -> INFO [][4ade2172] Entry chaincode: name:"lscc" -peer1.org2.example.com | [04f 12-19 08:04:21.09 UTC] [%{longpkg}] %{callpath} -> INFO Installed Chaincode [exp02] Version [1.0] to peer -peer1.org2.example.com | [050 12-19 08:04:21.09 UTC] [%{longpkg}] %{callpath} -> INFO [][4ade2172] Exit chaincode: name:"lscc" (4ms) -peer1.org2.example.com | [051 12-19 08:05:04.79 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Received block [3] from buffer -peer1.org2.example.com | [052 12-19 08:05:04.79 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Validated block [3] in 1ms -peer1.org2.example.com | [053 12-19 08:05:04.79 UTC] [%{longpkg}] %{callpath} -> INFO Channel [businesschannel]: Handling LSCC state update for chaincode [exp02] -peer1.org2.example.com | [054 12-19 08:05:04.80 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Committed block [3] with 1 transaction(s) in 10ms (state_validation=0ms block_commit=6ms state_commit=1ms) -peer1.org2.example.com | [055 12-19 08:05:05.49 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][5ac0ad53] Entry chaincode: name:"exp02" -peer1.org2.example.com | [056 12-19 08:05:05.51 UTC] [%{longpkg}] %{callpath} -> INFO building chaincode with ldflagsOpt: '-ldflags "-linkmode external -extldflags '-static'"' -peer1.org2.example.com | [057 12-19 08:05:46.24 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][5ac0ad53] Exit chaincode: name:"exp02" (40784ms) -peer1.org2.example.com | [058 12-19 08:05:46.86 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][7604474e] Entry chaincode: name:"exp02" -peer1.org2.example.com | [059 12-19 08:05:46.86 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][7604474e] Exit chaincode: name:"exp02" (3ms) -peer1.org2.example.com | [05a 12-19 08:05:48.57 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Received block [4] from buffer -peer0.org2.example.com | [04a 12-19 08:05:04.76 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Validated block [3] in 5ms -peer0.org2.example.com | [04b 12-19 08:05:04.76 UTC] [%{longpkg}] %{callpath} -> INFO Channel [businesschannel]: Handling LSCC state update for chaincode [exp02] -peer0.org2.example.com | [04c 12-19 08:05:04.79 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Committed block [3] with 1 transaction(s) in 25ms (state_validation=4ms block_commit=14ms state_commit=3ms) -peer0.org2.example.com | [04d 12-19 08:05:48.55 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Received block [4] from buffer -peer0.org2.example.com | [04e 12-19 08:05:48.55 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Validated block [4] in 1ms -peer0.org2.example.com | [04f 12-19 08:05:48.59 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Committed block [4] with 1 transaction(s) in 30ms (state_validation=0ms block_commit=21ms state_commit=5ms) -peer0.org2.example.com | [050 12-19 08:05:51.87 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Received block [5] from buffer -peer0.org2.example.com | [051 12-19 08:05:51.89 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Validated block [5] in 17ms -peer0.org2.example.com | [052 12-19 08:05:51.94 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Committed block [5] with 1 transaction(s) in 43ms (state_validation=0ms block_commit=38ms state_commit=2ms) -peer0.org2.example.com | [053 12-19 08:06:09.87 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Received block [6] from buffer -peer0.org2.example.com | [054 12-19 08:06:09.88 UTC] [%{longpkg}] %{callpath} -> WARN De-duplicating identity 0a074f7267314d535012aa062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434b6a4343416447674177494241674952414e7a345049457a56423178717639624f744f614e2b3877436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5467784d6a45354d4463314f5441775768634e4d6a67784d6a45324d4463314f5441770a576a42734d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45504d4130474131554543784d47593278705a5735304d523877485159445651514444425a425a473170626b42760a636d63784c6d56345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a497a6a30444151634451674145335a79366a6a45590a4c69343562504b56416f5968506b64755567756930454c593943414d5a6b436464472f6f446a6e66584e5767614b526e7772365353653972773656356d534f730a4e4c4d37624c78744542612b634b4e4e4d45737744675944565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759440a5652306a42435177496f4167645848684e786650744f7a3835506c4832594972673639474a43565551777178344e557776796e6749503877436759494b6f5a490a7a6a30454177494452774177524149674b565078706c7162543842454a4475666f38483635367564584d2f53473048464c436e334c526b515341554349456e6f0a453356544f79725241425970626e3033384633644c58514d692f344e5a2f50317a49552b6d4b57560a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a at index 2 in signature set -peer0.org2.example.com | [055 12-19 08:06:09.88 UTC] [%{longpkg}] %{callpath} -> WARN De-duplicating identity 0a074f7267314d535012aa062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434b6a4343416447674177494241674952414e7a345049457a56423178717639624f744f614e2b3877436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5467784d6a45354d4463314f5441775768634e4d6a67784d6a45324d4463314f5441770a576a42734d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45504d4130474131554543784d47593278705a5735304d523877485159445651514444425a425a473170626b42760a636d63784c6d56345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a497a6a30444151634451674145335a79366a6a45590a4c69343562504b56416f5968506b64755567756930454c593943414d5a6b436464472f6f446a6e66584e5767614b526e7772365353653972773656356d534f730a4e4c4d37624c78744542612b634b4e4e4d45737744675944565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759440a5652306a42435177496f4167645848684e786650744f7a3835506c4832594972673639474a43565551777178344e557776796e6749503877436759494b6f5a490a7a6a30454177494452774177524149674b565078706c7162543842454a4475666f38483635367564584d2f53473048464c436e334c526b515341554349456e6f0a453356544f79725241425970626e3033384633644c58514d692f344e5a2f50317a49552b6d4b57560a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a at index 2 in signature set -peer0.org2.example.com | [056 12-19 08:06:09.94 UTC] [%{longpkg}] %{callpath} -> INFO Joining gossip network of channel businesschannel with 3 organizations -peer0.org2.example.com | [057 12-19 08:06:09.94 UTC] [%{longpkg}] %{callpath} -> INFO No configured anchor peers of Org3MSP for channel businesschannel to learn about -peer0.org2.example.com | [058 12-19 08:06:09.94 UTC] [%{longpkg}] %{callpath} -> INFO Learning about the configured anchor peers of Org1MSP for channel businesschannel : [{peer0.org1.example.com 7051}] -peer0.org2.example.com | [059 12-19 08:06:09.94 UTC] [%{longpkg}] %{callpath} -> INFO Learning about the configured anchor peers of Org2MSP for channel businesschannel : [{peer0.org2.example.com 7051}] -peer0.org2.example.com | [05a 12-19 08:06:09.94 UTC] [%{longpkg}] %{callpath} -> INFO Anchor peer with same endpoint, skipping connecting to myself -peer0.org2.example.com | [05b 12-19 08:06:09.96 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Validated block [6] in 93ms -peer0.org2.example.com | [05c 12-19 08:06:10.00 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Committed block [6] with 1 transaction(s) in 41ms (state_validation=0ms block_commit=31ms state_commit=7ms) -peer0.org2.example.com | [05d 12-19 08:06:25.33 UTC] [%{longpkg}] %{callpath} -> INFO [][5e3b26ea] Entry chaincode: name:"cscc" -peer0.org2.example.com | [05e 12-19 08:06:25.33 UTC] [%{longpkg}] %{callpath} -> INFO [][5e3b26ea] Exit chaincode: name:"cscc" (1ms) -peer0.org2.example.com | [05f 12-19 08:06:26.46 UTC] [%{longpkg}] %{callpath} -> INFO [][e7af86e2] Entry chaincode: name:"qscc" -peer0.org2.example.com | [060 12-19 08:06:26.46 UTC] [%{longpkg}] %{callpath} -> INFO [][e7af86e2] Exit chaincode: name:"qscc" (2ms) -peer1.org2.example.com | [05b 12-19 08:05:48.57 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Validated block [4] in 4ms -peer1.org2.example.com | [05c 12-19 08:05:48.61 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Committed block [4] with 1 transaction(s) in 26ms (state_validation=0ms block_commit=21ms state_commit=2ms) -peer1.org2.example.com | [05d 12-19 08:05:49.47 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][35acdb5a] Entry chaincode: name:"exp02" -peer1.org2.example.com | [05e 12-19 08:05:49.48 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][35acdb5a] Exit chaincode: name:"exp02" (11ms) -peer1.org2.example.com | [05f 12-19 08:05:49.83 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][14d8d951] Entry chaincode: name:"exp02" -peer1.org2.example.com | [060 12-19 08:05:49.84 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][14d8d951] Exit chaincode: name:"exp02" (7ms) -peer1.org2.example.com | [061 12-19 08:05:51.88 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Received block [5] from buffer -peer1.org2.example.com | [062 12-19 08:05:51.88 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Validated block [5] in 5ms -peer1.org2.example.com | [063 12-19 08:05:51.92 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Committed block [5] with 1 transaction(s) in 34ms (state_validation=0ms block_commit=22ms state_commit=9ms) -peer1.org2.example.com | [064 12-19 08:06:09.89 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Received block [6] from buffer -peer1.org2.example.com | [065 12-19 08:06:09.89 UTC] [%{longpkg}] %{callpath} -> WARN De-duplicating identity 0a074f7267314d535012aa062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434b6a4343416447674177494241674952414e7a345049457a56423178717639624f744f614e2b3877436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5467784d6a45354d4463314f5441775768634e4d6a67784d6a45324d4463314f5441770a576a42734d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45504d4130474131554543784d47593278705a5735304d523877485159445651514444425a425a473170626b42760a636d63784c6d56345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a497a6a30444151634451674145335a79366a6a45590a4c69343562504b56416f5968506b64755567756930454c593943414d5a6b436464472f6f446a6e66584e5767614b526e7772365353653972773656356d534f730a4e4c4d37624c78744542612b634b4e4e4d45737744675944565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759440a5652306a42435177496f4167645848684e786650744f7a3835506c4832594972673639474a43565551777178344e557776796e6749503877436759494b6f5a490a7a6a30454177494452774177524149674b565078706c7162543842454a4475666f38483635367564584d2f53473048464c436e334c526b515341554349456e6f0a453356544f79725241425970626e3033384633644c58514d692f344e5a2f50317a49552b6d4b57560a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a at index 2 in signature set -peer1.org2.example.com | [066 12-19 08:06:09.89 UTC] [%{longpkg}] %{callpath} -> WARN De-duplicating identity 0a074f7267314d535012aa062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434b6a4343416447674177494241674952414e7a345049457a56423178717639624f744f614e2b3877436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5467784d6a45354d4463314f5441775768634e4d6a67784d6a45324d4463314f5441770a576a42734d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45504d4130474131554543784d47593278705a5735304d523877485159445651514444425a425a473170626b42760a636d63784c6d56345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a497a6a30444151634451674145335a79366a6a45590a4c69343562504b56416f5968506b64755567756930454c593943414d5a6b436464472f6f446a6e66584e5767614b526e7772365353653972773656356d534f730a4e4c4d37624c78744542612b634b4e4e4d45737744675944565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759440a5652306a42435177496f4167645848684e786650744f7a3835506c4832594972673639474a43565551777178344e557776796e6749503877436759494b6f5a490a7a6a30454177494452774177524149674b565078706c7162543842454a4475666f38483635367564584d2f53473048464c436e334c526b515341554349456e6f0a453356544f79725241425970626e3033384633644c58514d692f344e5a2f50317a49552b6d4b57560a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a at index 2 in signature set -peer1.org2.example.com | [067 12-19 08:06:09.97 UTC] [%{longpkg}] %{callpath} -> INFO Joining gossip network of channel businesschannel with 3 organizations -peer1.org2.example.com | [068 12-19 08:06:09.97 UTC] [%{longpkg}] %{callpath} -> INFO Learning about the configured anchor peers of Org2MSP for channel businesschannel : [{peer0.org2.example.com 7051}] -peer1.org2.example.com | [069 12-19 08:06:09.97 UTC] [%{longpkg}] %{callpath} -> INFO No configured anchor peers of Org3MSP for channel businesschannel to learn about -peer1.org2.example.com | [06a 12-19 08:06:09.97 UTC] [%{longpkg}] %{callpath} -> INFO Learning about the configured anchor peers of Org1MSP for channel businesschannel : [{peer0.org1.example.com 7051}] -peer1.org2.example.com | [06b 12-19 08:06:09.97 UTC] [%{longpkg}] %{callpath} -> WARN Failed to update ordering service endpoints, due to Channel with businesschannel id was not found -peer1.org2.example.com | [06c 12-19 08:06:10.14 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Validated block [6] in 248ms -peer1.org2.example.com | [06d 12-19 08:06:10.22 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Committed block [6] with 1 transaction(s) in 64ms (state_validation=0ms block_commit=54ms state_commit=5ms) -peer1.org2.example.com | [06e 12-19 08:06:25.52 UTC] [%{longpkg}] %{callpath} -> INFO [][ebdf9525] Entry chaincode: name:"cscc" -peer1.org2.example.com | [06f 12-19 08:06:25.52 UTC] [%{longpkg}] %{callpath} -> INFO [][ebdf9525] Exit chaincode: name:"cscc" (1ms) -peer1.org2.example.com | [070 12-19 08:06:26.69 UTC] [%{longpkg}] %{callpath} -> INFO [][9844fc18] Entry chaincode: name:"qscc" -peer1.org2.example.com | [071 12-19 08:06:26.69 UTC] [%{longpkg}] %{callpath} -> INFO [][9844fc18] Exit chaincode: name:"qscc" (1ms) +orderer0.example.com | General.TLS.Certificate = "/var/hyperledger/orderer/tls/server.crt" +peer0.org2.example.com | Go version: go1.11.4 +peer0.org1.example.com | [041 01-09 07:44:17.97 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Validated block [1] in 43ms +peer1.org2.example.com | [002 01-09 07:44:06.10 UTC] [%{longpkg}] %{callpath} -> INFO Initializing ledger mgmt +orderer0.example.com | General.TLS.RootCAs = [/var/hyperledger/orderer/tls/ca.crt] +peer0.org2.example.com | OS/Arch: linux/amd64 +peer0.org1.example.com | [042 01-09 07:44:17.98 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T07:44:17.987Z", "grpc.service": "gossip.Gossip", "grpc.method": "Ping", "grpc.request_deadline": "2019-01-09T07:44:19.987Z", "grpc.peer_address": "172.24.0.6:47332", "grpc.peer_subject": "CN=peer1.org1.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "615.2µs"} +peer1.org2.example.com | [003 01-09 07:44:06.10 UTC] [%{longpkg}] %{callpath} -> INFO Initializing ledger provider +orderer0.example.com | General.TLS.ClientAuthRequired = false +peer0.org2.example.com | Chaincode: +peer0.org1.example.com | [043 01-09 07:44:17.99 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Committed block [1] with 1 transaction(s) in 19ms (state_validation=1ms block_commit=11ms state_commit=3ms) +peer1.org2.example.com | [004 01-09 07:44:06.37 UTC] [%{longpkg}] %{callpath} -> INFO ledger provider Initialized +orderer0.example.com | General.TLS.ClientRootCAs = [] +peer0.org2.example.com | Base Docker Namespace: hyperledger +peer0.org1.example.com | [044 01-09 07:44:18.00 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T07:44:07.838Z", "grpc.service": "gossip.Gossip", "grpc.method": "GossipStream", "grpc.peer_address": "172.24.0.6:47288", "grpc.peer_subject": "CN=peer1.org1.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "10.1629946s"} +peer1.org2.example.com | [005 01-09 07:44:06.48 UTC] [%{longpkg}] %{callpath} -> INFO ledger mgmt initialized +orderer0.example.com | General.Cluster.ListenAddress = "" +peer0.org2.example.com | Base Docker Label: org.hyperledger.fabric +peer0.org1.example.com | [045 01-09 07:44:18.00 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T07:44:17.994Z", "grpc.service": "gossip.Gossip", "grpc.method": "GossipStream", "grpc.request_deadline": "2019-01-09T07:44:27.994Z", "grpc.peer_address": "172.24.0.6:47332", "grpc.peer_subject": "CN=peer1.org1.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "7.5798ms"} +peer1.org2.example.com | [006 01-09 07:44:06.48 UTC] [%{longpkg}] %{callpath} -> INFO Auto-detected peer address: 172.24.0.4:7051 +orderer0.example.com | General.Cluster.ListenPort = 0 +peer0.org2.example.com | Docker Namespace: hyperledger +peer0.org1.example.com | [046 01-09 07:44:18.31 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Received block [2] from buffer +peer1.org2.example.com | [007 01-09 07:44:06.48 UTC] [%{longpkg}] %{callpath} -> INFO Returning peer1.org2.example.com:7051 +orderer0.example.com | General.Cluster.ServerCertificate = "" +peer0.org2.example.com | [002 01-09 07:44:05.28 UTC] [%{longpkg}] %{callpath} -> INFO Initializing ledger mgmt +peer0.org1.example.com | [047 01-09 07:44:18.37 UTC] [%{longpkg}] %{callpath} -> INFO Joining gossip network of channel businesschannel with 2 organizations +peer1.org2.example.com | [008 01-09 07:44:06.48 UTC] [%{longpkg}] %{callpath} -> INFO Auto-detected peer address: 172.24.0.4:7051 +orderer0.example.com | General.Cluster.ServerPrivateKey = "" +peer0.org2.example.com | [003 01-09 07:44:05.28 UTC] [%{longpkg}] %{callpath} -> INFO Initializing ledger provider +peer0.org1.example.com | [048 01-09 07:44:18.37 UTC] [%{longpkg}] %{callpath} -> INFO Learning about the configured anchor peers of Org1MSP for channel businesschannel : [{peer0.org1.example.com 7051}] +peer1.org2.example.com | [009 01-09 07:44:06.48 UTC] [%{longpkg}] %{callpath} -> INFO Returning peer1.org2.example.com:7051 +orderer0.example.com | General.Cluster.ClientCertificate = "" +peer0.org2.example.com | [004 01-09 07:44:05.34 UTC] [%{longpkg}] %{callpath} -> INFO ledger provider Initialized +peer0.org1.example.com | [049 01-09 07:44:18.37 UTC] [%{longpkg}] %{callpath} -> INFO Anchor peer with same endpoint, skipping connecting to myself +peer1.org2.example.com | [00a 01-09 07:44:06.51 UTC] [%{longpkg}] %{callpath} -> INFO Starting peer with TLS enabled +orderer0.example.com | General.Cluster.ClientPrivateKey = "" +peer0.org2.example.com | [005 01-09 07:44:05.43 UTC] [%{longpkg}] %{callpath} -> INFO ledger mgmt initialized +peer0.org1.example.com | [04a 01-09 07:44:18.37 UTC] [%{longpkg}] %{callpath} -> INFO Learning about the configured anchor peers of Org2MSP for channel businesschannel : [{peer0.org2.example.com 7051}] +peer1.org2.example.com | [00b 01-09 07:44:06.55 UTC] [%{longpkg}] %{callpath} -> INFO Entering computeChaincodeEndpoint with peerHostname: peer1.org2.example.com +orderer0.example.com | General.Cluster.RootCAs = [/etc/hyperledger/fabric/tls/ca.crt] +peer0.org2.example.com | [006 01-09 07:44:05.43 UTC] [%{longpkg}] %{callpath} -> INFO Auto-detected peer address: 172.24.0.3:7051 +peer0.org1.example.com | [04b 01-09 07:44:18.46 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Validated block [2] in 140ms +peer1.org2.example.com | [00c 01-09 07:44:06.55 UTC] [%{longpkg}] %{callpath} -> INFO Exit with ccEndpoint: peer1.org2.example.com:7052 +orderer0.example.com | General.Cluster.DialTimeout = 5s +peer0.org2.example.com | [007 01-09 07:44:05.43 UTC] [%{longpkg}] %{callpath} -> INFO Returning peer0.org2.example.com:7051 +peer0.org1.example.com | [04c 01-09 07:44:18.49 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Committed block [2] with 1 transaction(s) in 36ms (state_validation=0ms block_commit=24ms state_commit=6ms) +peer1.org2.example.com | [00d 01-09 07:44:06.60 UTC] [%{longpkg}] %{callpath} -> INFO system chaincode lscc(github.com/hyperledger/fabric/core/scc/lscc) registered +orderer0.example.com | General.Cluster.RPCTimeout = 7s +peer0.org2.example.com | [008 01-09 07:44:05.43 UTC] [%{longpkg}] %{callpath} -> INFO Auto-detected peer address: 172.24.0.3:7051 +peer0.org1.example.com | [04d 01-09 07:44:18.51 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T07:44:18.515Z", "grpc.service": "gossip.Gossip", "grpc.method": "Ping", "grpc.request_deadline": "2019-01-09T07:44:20.514Z", "grpc.peer_address": "172.24.0.6:47346", "grpc.peer_subject": "CN=peer1.org1.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "329.1µs"} +peer1.org2.example.com | [00e 01-09 07:44:06.60 UTC] [%{longpkg}] %{callpath} -> INFO system chaincode cscc(github.com/hyperledger/fabric/core/scc/cscc) registered +orderer0.example.com | General.Cluster.ReplicationBufferSize = 20971520 +peer0.org2.example.com | [009 01-09 07:44:05.43 UTC] [%{longpkg}] %{callpath} -> INFO Returning peer0.org2.example.com:7051 +peer0.org1.example.com | [04e 01-09 07:44:18.55 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T07:44:18.521Z", "grpc.service": "gossip.Gossip", "grpc.method": "GossipStream", "grpc.request_deadline": "2019-01-09T07:44:28.52Z", "grpc.peer_address": "172.24.0.6:47346", "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": "30.6283ms"} +peer1.org2.example.com | [00f 01-09 07:44:06.60 UTC] [%{longpkg}] %{callpath} -> INFO system chaincode qscc(github.com/hyperledger/fabric/core/scc/qscc) registered +orderer0.example.com | General.Cluster.ReplicationPullTimeout = 5s +peer0.org2.example.com | [00a 01-09 07:44:05.49 UTC] [%{longpkg}] %{callpath} -> INFO Starting peer with TLS enabled +peer0.org1.example.com | [04f 01-09 07:44:18.56 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T07:44:18.562Z", "grpc.service": "gossip.Gossip", "grpc.method": "Ping", "grpc.request_deadline": "2019-01-09T07:44:20.559Z", "grpc.peer_address": "172.24.0.6:47350", "grpc.peer_subject": "CN=peer1.org1.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "154.8µs"} +peer1.org2.example.com | [010 01-09 07:44:06.60 UTC] [%{longpkg}] %{callpath} -> INFO system chaincode +lifecycle(github.com/hyperledger/fabric/core/chaincode/lifecycle) registered +orderer0.example.com | General.Cluster.ReplicationRetryTimeout = 5s +peer0.org2.example.com | [00b 01-09 07:44:05.55 UTC] [%{longpkg}] %{callpath} -> INFO Entering computeChaincodeEndpoint with peerHostname: peer0.org2.example.com +peer0.org1.example.com | [050 01-09 07:44:18.61 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T07:44:18.615Z", "grpc.service": "gossip.Gossip", "grpc.method": "Ping", "grpc.request_deadline": "2019-01-09T07:44:20.614Z", "grpc.peer_address": "172.24.0.4:41530", "grpc.peer_subject": "CN=peer1.org2.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "262.4µs"} +peer1.org2.example.com | [011 01-09 07:44:06.62 UTC] [%{longpkg}] %{callpath} -> INFO Initialize gossip with endpoint peer1.org2.example.com:7051 and bootstrap set [peer0.org2.example.com:7051] +orderer0.example.com | General.Cluster.ReplicationBackgroundRefreshInterval = 5m0s +peer0.org2.example.com | [00c 01-09 07:44:05.55 UTC] [%{longpkg}] %{callpath} -> INFO Exit with ccEndpoint: peer0.org2.example.com:7052 +peer0.org1.example.com | [051 01-09 07:44:18.65 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T07:44:18.655Z", "grpc.service": "gossip.Gossip", "grpc.method": "Ping", "grpc.request_deadline": "2019-01-09T07:44:20.654Z", "grpc.peer_address": "172.24.0.3:48218", "grpc.peer_subject": "CN=peer0.org2.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "303.5µs"} +peer1.org2.example.com | [012 01-09 07:44:06.63 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: 302ae1fabb5bfcf112d938b8df6703b63ccad4e1d98a25420745246f6316a49e, Metadata: +orderer0.example.com | General.Keepalive.ServerMinInterval = 1m0s +peer0.org2.example.com | [00d 01-09 07:44:05.72 UTC] [%{longpkg}] %{callpath} -> INFO system chaincode lscc(github.com/hyperledger/fabric/core/scc/lscc) registered +peer0.org1.example.com | [052 01-09 07:44:18.67 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T07:44:18.62Z", "grpc.service": "gossip.Gossip", "grpc.method": "GossipStream", "grpc.request_deadline": "2019-01-09T07:44:28.62Z", "grpc.peer_address": "172.24.0.4:41530", "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": "51.1887ms"} +peer1.org2.example.com | [013 01-09 07:44:06.63 UTC] [%{longpkg}] %{callpath} -> INFO Gossip instance peer1.org2.example.com:7051 started +orderer0.example.com | General.Keepalive.ServerInterval = 2h0m0s +peer0.org2.example.com | [00e 01-09 07:44:05.72 UTC] [%{longpkg}] %{callpath} -> INFO system chaincode cscc(github.com/hyperledger/fabric/core/scc/cscc) registered +peer0.org1.example.com | [053 01-09 07:44:18.69 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T07:44:18.697Z", "grpc.service": "gossip.Gossip", "grpc.method": "Ping", "grpc.request_deadline": "2019-01-09T07:44:20.696Z", "grpc.peer_address": "172.24.0.4:41534", "grpc.peer_subject": "CN=peer1.org2.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "245.9µs"} +peer1.org2.example.com | [014 01-09 07:44:06.64 UTC] [%{longpkg}] %{callpath} -> INFO system chaincode lscc/(github.com/hyperledger/fabric/core/scc/lscc) deployed +orderer0.example.com | General.Keepalive.ServerTimeout = 20s +peer0.org2.example.com | [00f 01-09 07:44:05.72 UTC] [%{longpkg}] %{callpath} -> INFO system chaincode qscc(github.com/hyperledger/fabric/core/scc/qscc) registered +peer0.org1.example.com | [054 01-09 07:44:18.73 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T07:44:18.659Z", "grpc.service": "gossip.Gossip", "grpc.method": "GossipStream", "grpc.request_deadline": "2019-01-09T07:44:28.659Z", "grpc.peer_address": "172.24.0.3:48218", "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": "75.7002ms"} +peer1.org2.example.com | [015 01-09 07:44:06.65 UTC] [%{longpkg}] %{callpath} -> INFO Init CSCC +orderer0.example.com | General.GenesisMethod = "file" +peer0.org2.example.com | [010 01-09 07:44:05.72 UTC] [%{longpkg}] %{callpath} -> INFO system chaincode +lifecycle(github.com/hyperledger/fabric/core/chaincode/lifecycle) registered +peer0.org1.example.com | [055 01-09 07:44:18.76 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T07:44:18.76Z", "grpc.service": "gossip.Gossip", "grpc.method": "Ping", "grpc.request_deadline": "2019-01-09T07:44:20.758Z", "grpc.peer_address": "172.24.0.4:41538", "grpc.peer_subject": "CN=peer1.org2.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "108.9µs"} +peer1.org2.example.com | [016 01-09 07:44:06.65 UTC] [%{longpkg}] %{callpath} -> INFO system chaincode cscc/(github.com/hyperledger/fabric/core/scc/cscc) deployed +orderer0.example.com | General.GenesisProfile = "SampleInsecureSolo" +peer0.org2.example.com | [011 01-09 07:44:05.77 UTC] [%{longpkg}] %{callpath} -> INFO Initialize gossip with endpoint peer0.org2.example.com:7051 and bootstrap set [peer0.org2.example.com:7051] +peer0.org1.example.com | [056 01-09 07:44:18.77 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T07:44:18.707Z", "grpc.service": "gossip.Gossip", "grpc.method": "GossipStream", "grpc.peer_address": "172.24.0.4:41534", "grpc.peer_subject": "CN=peer1.org2.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "64.1179ms"} +peer1.org2.example.com | [017 01-09 07:44:06.65 UTC] [%{longpkg}] %{callpath} -> INFO Init QSCC +orderer0.example.com | General.SystemChannel = "test-system-channel-name" +peer0.org2.example.com | [012 01-09 07:44:05.78 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: 08a78261d5cf98650084a8b632cf100db1b4fe2b3a3cff312a132fcf2ef0ec05, Metadata: +peer0.org1.example.com | [057 01-09 07:44:18.77 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T07:44:18.767Z", "grpc.service": "gossip.Gossip", "grpc.method": "GossipStream", "grpc.request_deadline": "2019-01-09T07:44:28.767Z", "grpc.peer_address": "172.24.0.4:41538", "grpc.peer_subject": "CN=peer1.org2.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "3.9574ms"} +peer1.org2.example.com | [018 01-09 07:44:06.65 UTC] [%{longpkg}] %{callpath} -> INFO system chaincode qscc/(github.com/hyperledger/fabric/core/scc/qscc) deployed +orderer0.example.com | General.GenesisFile = "/var/hyperledger/orderer/orderer.genesis.block" +peer0.org2.example.com | [013 01-09 07:44:05.79 UTC] [%{longpkg}] %{callpath} -> INFO Gossip instance peer0.org2.example.com:7051 started +peer0.org1.example.com | [058 01-09 07:44:18.81 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T07:44:18.816Z", "grpc.service": "gossip.Gossip", "grpc.method": "Ping", "grpc.request_deadline": "2019-01-09T07:44:20.815Z", "grpc.peer_address": "172.24.0.3:48228", "grpc.peer_subject": "CN=peer0.org2.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "171.2µs"} +peer1.org2.example.com | [019 01-09 07:44:06.66 UTC] [%{longpkg}] %{callpath} -> INFO system chaincode +lifecycle/(github.com/hyperledger/fabric/core/chaincode/lifecycle) deployed +orderer0.example.com | General.Profile.Enabled = false +peer0.org2.example.com | [014 01-09 07:44:05.80 UTC] [%{longpkg}] %{callpath} -> INFO system chaincode lscc/(github.com/hyperledger/fabric/core/scc/lscc) deployed +peer0.org1.example.com | [059 01-09 07:44:18.82 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T07:44:18.821Z", "grpc.service": "gossip.Gossip", "grpc.method": "GossipStream", "grpc.request_deadline": "2019-01-09T07:44:28.82Z", "grpc.peer_address": "172.24.0.3:48228", "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": "8.0639ms"} +peer1.org2.example.com | [01a 01-09 07:44:06.66 UTC] [%{longpkg}] %{callpath} -> INFO Deployed system chaincodes +orderer0.example.com | General.Profile.Address = "0.0.0.0:6060" +peer0.org2.example.com | [015 01-09 07:44:05.80 UTC] [%{longpkg}] %{callpath} -> INFO Init CSCC +peer0.org1.example.com | [05a 01-09 07:44:18.85 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T07:44:18.855Z", "grpc.service": "gossip.Gossip", "grpc.method": "Ping", "grpc.request_deadline": "2019-01-09T07:44:20.855Z", "grpc.peer_address": "172.24.0.3:48230", "grpc.peer_subject": "CN=peer0.org2.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "130.9µs"} +peer1.org2.example.com | [01b 01-09 07:44:06.66 UTC] [%{longpkg}] %{callpath} -> INFO Created with config TLS: true, authCacheMaxSize: 1000, authCachePurgeRatio: 0.750000 +orderer0.example.com | General.LocalMSPDir = "/var/hyperledger/orderer/msp" +peer0.org2.example.com | [016 01-09 07:44:05.80 UTC] [%{longpkg}] %{callpath} -> INFO system chaincode cscc/(github.com/hyperledger/fabric/core/scc/cscc) deployed +peer0.org1.example.com | [05b 01-09 07:44:21.61 UTC] [%{longpkg}] %{callpath} -> INFO [][dbcceaf0] Entry chaincode: name:"lscc" +peer1.org2.example.com | [01c 01-09 07:44:06.66 UTC] [%{longpkg}] %{callpath} -> INFO Discovery service activated +orderer0.example.com | General.LocalMSPID = "OrdererMSP" +peer0.org2.example.com | [017 01-09 07:44:05.80 UTC] [%{longpkg}] %{callpath} -> INFO Init QSCC +peer0.org1.example.com | [05c 01-09 07:44:21.61 UTC] [%{longpkg}] %{callpath} -> INFO Installed Chaincode [exp02] Version [1.0] to peer +peer1.org2.example.com | [01d 01-09 07:44:06.66 UTC] [%{longpkg}] %{callpath} -> INFO Starting peer with ID=[name:"peer1.org2.example.com" ], network ID=[dev], address=[peer1.org2.example.com:7051] +orderer0.example.com | General.BCCSP.ProviderName = "SW" +peer0.org2.example.com | [018 01-09 07:44:05.80 UTC] [%{longpkg}] %{callpath} -> INFO system chaincode qscc/(github.com/hyperledger/fabric/core/scc/qscc) deployed +peer0.org1.example.com | [05d 01-09 07:44:21.61 UTC] [%{longpkg}] %{callpath} -> INFO [][dbcceaf0] Exit chaincode: name:"lscc" (4ms) +peer1.org2.example.com | [01e 01-09 07:44:06.66 UTC] [%{longpkg}] %{callpath} -> INFO Started peer with ID=[name:"peer1.org2.example.com" ], network ID=[dev], address=[peer1.org2.example.com:7051] +orderer0.example.com | General.BCCSP.SwOpts.SecLevel = 256 +peer0.org2.example.com | [019 01-09 07:44:05.81 UTC] [%{longpkg}] %{callpath} -> INFO system chaincode +lifecycle/(github.com/hyperledger/fabric/core/chaincode/lifecycle) deployed +peer0.org1.example.com | [05e 01-09 07:44:21.61 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T07:44:21.609Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.24.0.7:54914", "grpc.code": "OK", "grpc.call_duration": "4.7839ms"} +peer1.org2.example.com | [01f 01-09 07:44:12.72 UTC] [%{longpkg}] %{callpath} -> INFO [][03782343] Entry chaincode: name:"cscc" +orderer0.example.com | General.BCCSP.SwOpts.HashFamily = "SHA2" +peer0.org2.example.com | [01a 01-09 07:44:05.81 UTC] [%{longpkg}] %{callpath} -> INFO Deployed system chaincodes +peer0.org1.example.com | [05f 01-09 07:44:21.79 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 ]] +peer1.org2.example.com | [020 01-09 07:44:12.72 UTC] [%{longpkg}] %{callpath} -> INFO Creating ledger [businesschannel] with genesis block +orderer0.example.com | General.BCCSP.SwOpts.Ephemeral = false +peer0.org2.example.com | [01b 01-09 07:44:05.81 UTC] [%{longpkg}] %{callpath} -> INFO Created with config TLS: true, authCacheMaxSize: 1000, authCachePurgeRatio: 0.750000 +peer0.org1.example.com | [060 01-09 07:44:25.18 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][e1d9b757] Entry chaincode: name:"lscc" +peer1.org2.example.com | [021 01-09 07:44:12.73 UTC] [%{longpkg}] %{callpath} -> INFO Getting block information from block storage +orderer0.example.com | General.BCCSP.SwOpts.FileKeystore.KeyStorePath = "/var/hyperledger/orderer/msp/keystore" +peer0.org2.example.com | [01c 01-09 07:44:05.81 UTC] [%{longpkg}] %{callpath} -> INFO Discovery service activated +peer0.org1.example.com | [061 01-09 07:44:25.20 UTC] [%{longpkg}] %{callpath} -> INFO building chaincode with ldflagsOpt: '-ldflags "-linkmode external -extldflags '-static'"' +peer1.org2.example.com | [022 01-09 07:44:12.75 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Committed block [0] with 1 transaction(s) in 18ms (state_validation=1ms block_commit=11ms state_commit=2ms) +orderer0.example.com | General.BCCSP.SwOpts.DummyKeystore = +peer0.org2.example.com | [01d 01-09 07:44:05.81 UTC] [%{longpkg}] %{callpath} -> INFO Starting peer with ID=[name:"peer0.org2.example.com" ], network ID=[dev], address=[peer0.org2.example.com:7051] +peer0.org1.example.com | [062 01-09 07:45:07.89 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][e1d9b757] Exit chaincode: name:"lscc" (42738ms) +peer1.org2.example.com | [023 01-09 07:44:12.76 UTC] [%{longpkg}] %{callpath} -> INFO Created ledger [businesschannel] with genesis block +orderer0.example.com | General.BCCSP.SwOpts.InmemKeystore = +peer0.org2.example.com | [01e 01-09 07:44:05.81 UTC] [%{longpkg}] %{callpath} -> INFO Started peer with ID=[name:"peer0.org2.example.com" ], network ID=[dev], address=[peer0.org2.example.com:7051] +peer0.org1.example.com | [063 01-09 07:45:07.89 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T07:44:25.184Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.24.0.7:54932", "grpc.code": "OK", "grpc.call_duration": "42.7408033s"} +peer1.org2.example.com | [024 01-09 07:44:12.77 UTC] [%{longpkg}] %{callpath} -> INFO Joining gossip network of channel businesschannel with 2 organizations +orderer0.example.com | General.BCCSP.PluginOpts = +peer0.org2.example.com | [01f 01-09 07:44:06.64 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T07:44:06.641Z", "grpc.service": "gossip.Gossip", "grpc.method": "Ping", "grpc.request_deadline": "2019-01-09T07:44:08.641Z", "grpc.peer_address": "172.24.0.4:50688", "grpc.peer_subject": "CN=peer1.org2.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "151.2µs"} +peer0.org1.example.com | [064 01-09 07:45:09.91 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Received block [3] from buffer +peer1.org2.example.com | [025 01-09 07:44:12.77 UTC] [%{longpkg}] %{callpath} -> INFO No configured anchor peers of Org2MSP for channel businesschannel to learn about +orderer0.example.com | General.Authentication.TimeWindow = 15m0s +peer0.org2.example.com | [020 01-09 07:44:06.66 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T07:44:06.648Z", "grpc.service": "gossip.Gossip", "grpc.method": "GossipStream", "grpc.request_deadline": "2019-01-09T07:44:16.648Z", "grpc.peer_address": "172.24.0.4:50688", "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": "18.4644ms"} +peer0.org1.example.com | [065 01-09 07:45:09.91 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Validated block [3] in 5ms +peer1.org2.example.com | [026 01-09 07:44:12.77 UTC] [%{longpkg}] %{callpath} -> INFO No configured anchor peers of Org1MSP for channel businesschannel to learn about +orderer0.example.com | FileLedger.Location = "/var/hyperledger/production/orderer" +peer0.org2.example.com | [021 01-09 07:44:06.67 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T07:44:06.672Z", "grpc.service": "gossip.Gossip", "grpc.method": "Ping", "grpc.request_deadline": "2019-01-09T07:44:08.671Z", "grpc.peer_address": "172.24.0.4:50690", "grpc.peer_subject": "CN=peer1.org2.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "125.5µs"} +peer0.org1.example.com | [066 01-09 07:45:09.92 UTC] [%{longpkg}] %{callpath} -> INFO Channel [businesschannel]: Handling deploy or update of chaincode [exp02] +peer1.org2.example.com | [027 01-09 07:44:12.80 UTC] [%{longpkg}] %{callpath} -> INFO Updating metadata information, current ledger sequence is at = 0, next expected block is = 1 +orderer0.example.com | FileLedger.Prefix = "hyperledger-fabric-ordererledger" +peer0.org2.example.com | [022 01-09 07:44:12.37 UTC] [%{longpkg}] %{callpath} -> INFO [][b34b0763] Entry chaincode: name:"cscc" +peer0.org1.example.com | [067 01-09 07:45:09.95 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Committed block [3] with 1 transaction(s) in 30ms (state_validation=2ms block_commit=19ms state_commit=4ms) +peer1.org2.example.com | [028 01-09 07:44:12.80 UTC] [%{longpkg}] %{callpath} -> INFO system chaincode lscc/businesschannel(github.com/hyperledger/fabric/core/scc/lscc) deployed +orderer0.example.com | RAMLedger.HistorySize = 1000 +peer0.org2.example.com | [023 01-09 07:44:12.37 UTC] [%{longpkg}] %{callpath} -> INFO Creating ledger [businesschannel] with genesis block +peer0.org1.example.com | [068 01-09 07:45:55.47 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][f5e8173c] Entry chaincode: name:"exp02" +peer1.org2.example.com | [029 01-09 07:44:12.80 UTC] [%{longpkg}] %{callpath} -> INFO Init CSCC +orderer0.example.com | Kafka.Retry.ShortInterval = 5s +peer0.org2.example.com | [024 01-09 07:44:12.37 UTC] [%{longpkg}] %{callpath} -> INFO Getting block information from block storage +peer0.org1.example.com | [069 01-09 07:45:55.49 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][f5e8173c] Exit chaincode: name:"exp02" (13ms) +peer1.org2.example.com | [02a 01-09 07:44:12.80 UTC] [%{longpkg}] %{callpath} -> INFO system chaincode cscc/businesschannel(github.com/hyperledger/fabric/core/scc/cscc) deployed +orderer0.example.com | Kafka.Retry.ShortTotal = 10m0s +peer0.org2.example.com | [025 01-09 07:44:12.40 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Committed block [0] with 1 transaction(s) in 17ms (state_validation=1ms block_commit=9ms state_commit=3ms) +peer0.org1.example.com | [06a 01-09 07:45:55.49 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T07:45:55.41Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.24.0.7:55012", "grpc.code": "OK", "grpc.call_duration": "81.8345ms"} +peer1.org2.example.com | [02b 01-09 07:44:12.80 UTC] [%{longpkg}] %{callpath} -> INFO Init QSCC +orderer0.example.com | Kafka.Retry.LongInterval = 5m0s +peer0.org2.example.com | [026 01-09 07:44:12.40 UTC] [%{longpkg}] %{callpath} -> INFO Created ledger [businesschannel] with genesis block +peer0.org1.example.com | [06b 01-09 07:45:57.52 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Received block [4] from buffer +peer1.org2.example.com | [02c 01-09 07:44:12.80 UTC] [%{longpkg}] %{callpath} -> INFO system chaincode qscc/businesschannel(github.com/hyperledger/fabric/core/scc/qscc) deployed +orderer0.example.com | Kafka.Retry.LongTotal = 12h0m0s +peer0.org2.example.com | [027 01-09 07:44:12.41 UTC] [%{longpkg}] %{callpath} -> INFO Joining gossip network of channel businesschannel with 2 organizations +peer0.org1.example.com | [06c 01-09 07:45:57.53 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Validated block [4] in 17ms +peer1.org2.example.com | [02d 01-09 07:44:12.80 UTC] [%{longpkg}] %{callpath} -> INFO system chaincode +lifecycle/businesschannel(github.com/hyperledger/fabric/core/chaincode/lifecycle) deployed +orderer0.example.com | Kafka.Retry.NetworkTimeouts.DialTimeout = 10s +peer0.org2.example.com | [028 01-09 07:44:12.41 UTC] [%{longpkg}] %{callpath} -> INFO No configured anchor peers of Org2MSP for channel businesschannel to learn about +peer0.org1.example.com | [06d 01-09 07:45:57.59 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Committed block [4] with 1 transaction(s) in 40ms (state_validation=2ms block_commit=21ms state_commit=14ms) +peer1.org2.example.com | [02e 01-09 07:44:12.80 UTC] [%{longpkg}] %{callpath} -> INFO [][03782343] Exit chaincode: name:"cscc" (82ms) +orderer0.example.com | Kafka.Retry.NetworkTimeouts.ReadTimeout = 10s +peer0.org2.example.com | [029 01-09 07:44:12.41 UTC] [%{longpkg}] %{callpath} -> INFO No configured anchor peers of Org1MSP for channel businesschannel to learn about +peer0.org1.example.com | [06e 01-09 07:45:58.39 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][fc4503ea] Entry chaincode: name:"exp02" +peer1.org2.example.com | [02f 01-09 07:44:12.80 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T07:44:12.723Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.24.0.7:51624", "grpc.code": "OK", "grpc.call_duration": "84.656ms"} +orderer0.example.com | Kafka.Retry.NetworkTimeouts.WriteTimeout = 10s +peer0.org2.example.com | [02a 01-09 07:44:12.44 UTC] [%{longpkg}] %{callpath} -> INFO Updating metadata information, current ledger sequence is at = 0, next expected block is = 1 +peer0.org1.example.com | [06f 01-09 07:45:58.39 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][fc4503ea] Exit chaincode: name:"exp02" (3ms) +peer1.org2.example.com | [030 01-09 07:44:14.25 UTC] [%{longpkg}] %{callpath} -> INFO [][f9d67f1d] Entry chaincode: name:"cscc" +orderer0.example.com | Kafka.Retry.Metadata.RetryMax = 3 +peer0.org2.example.com | [02b 01-09 07:44:12.44 UTC] [%{longpkg}] %{callpath} -> INFO system chaincode lscc/businesschannel(github.com/hyperledger/fabric/core/scc/lscc) deployed +peer0.org1.example.com | [070 01-09 07:45:58.39 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T07:45:58.389Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.24.0.7:55034", "grpc.code": "OK", "grpc.call_duration": "6.0111ms"} +peer1.org2.example.com | [031 01-09 07:44:14.26 UTC] [%{longpkg}] %{callpath} -> INFO [][f9d67f1d] Exit chaincode: name:"cscc" (1ms) +orderer0.example.com | Kafka.Retry.Metadata.RetryBackoff = 250ms +peer0.org2.example.com | [02c 01-09 07:44:12.44 UTC] [%{longpkg}] %{callpath} -> INFO Init CSCC +peer0.org1.example.com | [071 01-09 07:46:00.24 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Received block [5] from buffer +peer1.org2.example.com | [032 01-09 07:44:14.26 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T07:44:14.257Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.24.0.7:51632", "grpc.code": "OK", "grpc.call_duration": "4.0301ms"} +orderer0.example.com | Kafka.Retry.Producer.RetryMax = 3 +peer0.org2.example.com | [02d 01-09 07:44:12.45 UTC] [%{longpkg}] %{callpath} -> INFO system chaincode cscc/businesschannel(github.com/hyperledger/fabric/core/scc/cscc) deployed +peer0.org1.example.com | [072 01-09 07:46:00.26 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Validated block [5] in 14ms +peer1.org2.example.com | [033 01-09 07:44:15.33 UTC] [%{longpkg}] %{callpath} -> INFO [][4b813497] Entry chaincode: name:"qscc" +orderer0.example.com | Kafka.Retry.Producer.RetryBackoff = 100ms +peer0.org2.example.com | [02e 01-09 07:44:12.45 UTC] [%{longpkg}] %{callpath} -> INFO Init QSCC +peer0.org1.example.com | [073 01-09 07:46:00.30 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Committed block [5] with 1 transaction(s) in 35ms (state_validation=2ms block_commit=23ms state_commit=5ms) +peer1.org2.example.com | [034 01-09 07:44:15.34 UTC] [%{longpkg}] %{callpath} -> INFO [][4b813497] Exit chaincode: name:"qscc" (3ms) +orderer0.example.com | Kafka.Retry.Consumer.RetryBackoff = 2s +peer0.org2.example.com | [02f 01-09 07:44:12.45 UTC] [%{longpkg}] %{callpath} -> INFO system chaincode qscc/businesschannel(github.com/hyperledger/fabric/core/scc/qscc) deployed +peer0.org1.example.com | [074 01-09 07:46:00.55 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][89a6192e] Entry chaincode: name:"exp02" +orderer0.example.com | Kafka.Verbose = false +peer1.org2.example.com | [035 01-09 07:44:15.34 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T07:44:15.335Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.24.0.7:51640", "grpc.code": "OK", "grpc.call_duration": "6.1358ms"} +peer0.org2.example.com | [030 01-09 07:44:12.45 UTC] [%{longpkg}] %{callpath} -> INFO system chaincode +lifecycle/businesschannel(github.com/hyperledger/fabric/core/chaincode/lifecycle) deployed +peer0.org1.example.com | [075 01-09 07:46:00.56 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][89a6192e] Exit chaincode: name:"exp02" (4ms) +orderer0.example.com | Kafka.Version = 0.10.2.0 +peer1.org2.example.com | [036 01-09 07:44:17.79 UTC] [%{longpkg}] %{callpath} -> INFO Membership view has changed. peers went online: [[peer0.org2.example.com:7051]] , current view: [[peer0.org2.example.com:7051]] +peer0.org1.example.com | [076 01-09 07:46:00.56 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T07:46:00.555Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.24.0.7:55038", "grpc.code": "OK", "grpc.call_duration": "6.8017ms"} +peer0.org2.example.com | [031 01-09 07:44:12.45 UTC] [%{longpkg}] %{callpath} -> INFO [][b34b0763] Exit chaincode: name:"cscc" (85ms) +orderer0.example.com | Kafka.TLS.Enabled = false +peer1.org2.example.com | [037 01-09 07:44:18.48 UTC] [%{longpkg}] %{callpath} -> INFO 302ae1fabb5bfcf112d938b8df6703b63ccad4e1d98a25420745246f6316a49e : Some peer is already a leader +peer0.org1.example.com | [077 01-09 07:46:01.15 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][82e956e3] Entry chaincode: name:"lscc" +peer0.org2.example.com | [032 01-09 07:44:12.45 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T07:44:12.37Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.24.0.7:34382", "grpc.code": "OK", "grpc.call_duration": "88.3469ms"} +orderer0.example.com | Kafka.TLS.PrivateKey = "" +peer1.org2.example.com | [038 01-09 07:44:18.53 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Received block [1] from buffer +peer0.org1.example.com | [078 01-09 07:46:01.15 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][82e956e3] Exit chaincode: name:"lscc" (3ms) +peer0.org2.example.com | [033 01-09 07:44:14.07 UTC] [%{longpkg}] %{callpath} -> INFO [][7d6a87a9] Entry chaincode: name:"cscc" +orderer0.example.com | Kafka.TLS.Certificate = "" +peer1.org2.example.com | [039 01-09 07:44:18.57 UTC] [%{longpkg}] %{callpath} -> INFO Joining gossip network of channel businesschannel with 2 organizations +peer0.org2.example.com | [034 01-09 07:44:14.07 UTC] [%{longpkg}] %{callpath} -> INFO [][7d6a87a9] Exit chaincode: name:"cscc" (2ms) +peer0.org1.example.com | [079 01-09 07:46:01.16 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T07:46:01.149Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.24.0.7:55042", "grpc.code": "OK", "grpc.call_duration": "13.9729ms"} +orderer0.example.com | Kafka.TLS.RootCAs = [] +peer1.org2.example.com | [03a 01-09 07:44:18.58 UTC] [%{longpkg}] %{callpath} -> INFO Learning about the configured anchor peers of Org1MSP for channel businesschannel : [{peer0.org1.example.com 7051}] +peer0.org2.example.com | [035 01-09 07:44:14.07 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T07:44:14.068Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.24.0.7:34390", "grpc.code": "OK", "grpc.call_duration": "5.5671ms"} +peer0.org1.example.com | [07a 01-09 07:46:01.34 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][b8c3cfdf] Entry chaincode: name:"lscc" +orderer0.example.com | Kafka.TLS.ClientAuthRequired = false +peer1.org2.example.com | [03b 01-09 07:44:18.58 UTC] [%{longpkg}] %{callpath} -> INFO No configured anchor peers of Org2MSP for channel businesschannel to learn about +peer0.org2.example.com | [036 01-09 07:44:15.16 UTC] [%{longpkg}] %{callpath} -> INFO [][51db9a1b] Entry chaincode: name:"qscc" +peer0.org1.example.com | [07b 01-09 07:46:01.35 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][b8c3cfdf] Exit chaincode: name:"lscc" (1ms) +orderer0.example.com | Kafka.TLS.ClientRootCAs = [] +peer1.org2.example.com | [03c 01-09 07:44:18.58 UTC] [%{longpkg}] %{callpath} -> WARN Failed to update ordering service endpoints, due to Channel with businesschannel id was not found +peer0.org2.example.com | [037 01-09 07:44:15.16 UTC] [%{longpkg}] %{callpath} -> INFO [][51db9a1b] Exit chaincode: name:"qscc" (4ms) +peer0.org1.example.com | [07c 01-09 07:46:01.35 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T07:46:01.348Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.24.0.7:55048", "grpc.code": "OK", "grpc.call_duration": "3.7346ms"} +orderer0.example.com | Kafka.SASLPlain.Enabled = false +peer1.org2.example.com | [03d 01-09 07:44:18.60 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Validated block [1] in 66ms +peer0.org2.example.com | [038 01-09 07:44:15.16 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T07:44:15.16Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.24.0.7:34398", "grpc.code": "OK", "grpc.call_duration": "4.7859ms"} +peer0.org1.example.com | [07d 01-09 07:46:01.54 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][45dd4e0f] Entry chaincode: name:"lscc" +orderer0.example.com | Kafka.SASLPlain.User = "" +peer1.org2.example.com | [03e 01-09 07:44:18.64 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Committed block [1] with 1 transaction(s) in 34ms (state_validation=0ms block_commit=14ms state_commit=10ms) +peer0.org2.example.com | [039 01-09 07:44:17.42 UTC] [%{longpkg}] %{callpath} -> INFO Membership view has changed. peers went online: [[peer1.org2.example.com:7051]] , current view: [[peer1.org2.example.com:7051]] +peer0.org1.example.com | [07e 01-09 07:46:01.54 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][45dd4e0f] Exit chaincode: name:"lscc" (2ms) +orderer0.example.com | Kafka.SASLPlain.Password = "" +peer1.org2.example.com | [03f 01-09 07:44:18.64 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Received block [2] from buffer +peer0.org2.example.com | [03a 01-09 07:44:18.45 UTC] [%{longpkg}] %{callpath} -> INFO 08a78261d5cf98650084a8b632cf100db1b4fe2b3a3cff312a132fcf2ef0ec05 : Becoming a leader +peer0.org1.example.com | [07f 01-09 07:46:01.54 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T07:46:01.542Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.24.0.7:55052", "grpc.code": "OK", "grpc.call_duration": "4.4496ms"} +orderer0.example.com | Kafka.Topic.ReplicationFactor = 3 +peer1.org2.example.com | [040 01-09 07:44:18.72 UTC] [%{longpkg}] %{callpath} -> INFO Joining gossip network of channel businesschannel with 2 organizations +peer0.org2.example.com | [03b 01-09 07:44:18.45 UTC] [%{longpkg}] %{callpath} -> INFO Elected as a leader, starting delivery service for channel businesschannel +peer0.org1.example.com | [080 01-09 07:46:01.82 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][9d03d97d] Entry chaincode: name:"lscc" +orderer0.example.com | Debug.BroadcastTraceDir = "" +peer1.org2.example.com | [041 01-09 07:44:18.72 UTC] [%{longpkg}] %{callpath} -> INFO Learning about the configured anchor peers of Org1MSP for channel businesschannel : [{peer0.org1.example.com 7051}] +peer0.org2.example.com | [03c 01-09 07:44:18.46 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T07:44:18.459Z", "grpc.service": "gossip.Gossip", "grpc.method": "Ping", "grpc.request_deadline": "2019-01-09T07:44:20.458Z", "grpc.peer_address": "172.24.0.5:42108", "grpc.peer_subject": "CN=peer0.org1.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "609µs"} +peer0.org1.example.com | [081 01-09 07:46:01.82 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][9d03d97d] Exit chaincode: name:"lscc" (1ms) +orderer0.example.com | Debug.DeliverTraceDir = "" +peer1.org2.example.com | [042 01-09 07:44:18.72 UTC] [%{longpkg}] %{callpath} -> INFO Learning about the configured anchor peers of Org2MSP for channel businesschannel : [{peer0.org2.example.com 7051}] +peer0.org2.example.com | [03d 01-09 07:44:18.47 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T07:44:18.462Z", "grpc.service": "gossip.Gossip", "grpc.method": "GossipStream", "grpc.request_deadline": "2019-01-09T07:44:28.462Z", "grpc.peer_address": "172.24.0.5:42108", "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": "16.7314ms"} +peer0.org1.example.com | [082 01-09 07:46:01.83 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T07:46:01.823Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.24.0.7:55056", "grpc.code": "OK", "grpc.call_duration": "8.8364ms"} +orderer0.example.com | Consensus = map[WALDir:/var/hyperledger/production/orderer/etcdraft/wal SnapDir:/var/hyperledger/production/orderer/etcdraft/snapshot] +peer1.org2.example.com | [043 01-09 07:44:18.72 UTC] [%{longpkg}] %{callpath} -> WARN Failed to update ordering service endpoints, due to Channel with businesschannel id was not found +peer0.org2.example.com | [03e 01-09 07:44:18.49 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T07:44:18.494Z", "grpc.service": "gossip.Gossip", "grpc.method": "Ping", "grpc.request_deadline": "2019-01-09T07:44:20.494Z", "grpc.peer_address": "172.24.0.5:42110", "grpc.peer_subject": "CN=peer0.org1.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "177.3µs"} +peer0.org1.example.com | [083 01-09 07:46:02.04 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][1db81a96] Entry chaincode: name:"lscc" +orderer0.example.com | Operations.ListenAddress = "0.0.0.0:8443" +peer1.org2.example.com | [044 01-09 07:44:18.74 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Validated block [2] in 99ms +peer0.org2.example.com | [03f 01-09 07:44:18.52 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Received block [1] from buffer +peer0.org1.example.com | [084 01-09 07:46:02.04 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][1db81a96] Exit chaincode: name:"lscc" (3ms) +orderer0.example.com | Operations.TLS.Enabled = false +peer1.org2.example.com | [045 01-09 07:44:18.77 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Committed block [2] with 1 transaction(s) in 25ms (state_validation=1ms block_commit=14ms state_commit=5ms) +peer0.org2.example.com | [040 01-09 07:44:18.59 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T07:44:18.581Z", "grpc.service": "gossip.Gossip", "grpc.method": "Ping", "grpc.request_deadline": "2019-01-09T07:44:20.58Z", "grpc.peer_address": "172.24.0.6:36314", "grpc.peer_subject": "CN=peer1.org1.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "12.1284ms"} +peer0.org1.example.com | [085 01-09 07:46:02.04 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T07:46:02.039Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.24.0.7:55064", "grpc.code": "OK", "grpc.call_duration": "5.8508ms"} +orderer0.example.com | Operations.TLS.PrivateKey = "" +peer1.org2.example.com | [046 01-09 07:44:18.79 UTC] [%{longpkg}] %{callpath} -> WARN peer0.org1.example.com:7051, PKIid:099f13cbe2db0d065da1feceffb3833bdda3e3ec7893a40a37b60bd0b54245d9 isn't responsive: EOF +peer0.org2.example.com | [041 01-09 07:44:18.63 UTC] [%{longpkg}] %{callpath} -> INFO Joining gossip network of channel businesschannel with 2 organizations +peer0.org1.example.com | [086 01-09 07:46:02.75 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][7a7db98a] Entry chaincode: name:"qscc" +orderer0.example.com | Operations.TLS.Certificate = "" +peer1.org2.example.com | [047 01-09 07:44:18.79 UTC] [%{longpkg}] %{callpath} -> WARN Entering [099f13cbe2db0d065da1feceffb3833bdda3e3ec7893a40a37b60bd0b54245d9] +peer0.org2.example.com | [042 01-09 07:44:18.63 UTC] [%{longpkg}] %{callpath} -> INFO Learning about the configured anchor peers of Org1MSP for channel businesschannel : [{peer0.org1.example.com 7051}] +peer0.org1.example.com | [087 01-09 07:46:02.75 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][7a7db98a] Exit chaincode: name:"qscc" (3ms) +orderer0.example.com | Operations.TLS.RootCAs = [] +peer1.org2.example.com | [048 01-09 07:44:18.79 UTC] [%{longpkg}] %{callpath} -> WARN Closing connection to Endpoint: peer0.org1.example.com:7051, InternalEndpoint: , PKI-ID: 099f13cbe2db0d065da1feceffb3833bdda3e3ec7893a40a37b60bd0b54245d9, Metadata: +peer0.org2.example.com | [043 01-09 07:44:18.63 UTC] [%{longpkg}] %{callpath} -> INFO No configured anchor peers of Org2MSP for channel businesschannel to learn about +peer0.org1.example.com | [088 01-09 07:46:02.76 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T07:46:02.745Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.24.0.7:55068", "grpc.code": "OK", "grpc.call_duration": "20.066ms"} +orderer0.example.com | Operations.TLS.ClientAuthRequired = false +peer1.org2.example.com | [049 01-09 07:44:18.79 UTC] [%{longpkg}] %{callpath} -> WARN Exiting +peer0.org2.example.com | [044 01-09 07:44:18.69 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Validated block [1] in 165ms +peer0.org1.example.com | [089 01-09 07:46:03.01 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][74554b68] Entry chaincode: name:"qscc" +orderer0.example.com | Operations.TLS.ClientRootCAs = [] +peer1.org2.example.com | [04a 01-09 07:44:18.81 UTC] [%{longpkg}] %{callpath} -> WARN peer0.org2.example.com:7051, PKIid:08a78261d5cf98650084a8b632cf100db1b4fe2b3a3cff312a132fcf2ef0ec05 isn't responsive: EOF +peer0.org2.example.com | [045 01-09 07:44:18.70 UTC] [%{longpkg}] %{callpath} -> WARN peer0.org1.example.com:7051, PKIid:099f13cbe2db0d065da1feceffb3833bdda3e3ec7893a40a37b60bd0b54245d9 isn't responsive: rpc error: code = Unavailable desc = transport is closing +peer0.org1.example.com | [08a 01-09 07:46:03.02 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][74554b68] Exit chaincode: name:"qscc" (2ms) +orderer0.example.com | Metrics.Provider = "prometheus" +peer1.org2.example.com | [04b 01-09 07:44:18.81 UTC] [%{longpkg}] %{callpath} -> WARN Entering [08a78261d5cf98650084a8b632cf100db1b4fe2b3a3cff312a132fcf2ef0ec05] +peer0.org2.example.com | [046 01-09 07:44:18.70 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T07:44:18.499Z", "grpc.service": "gossip.Gossip", "grpc.method": "GossipStream", "grpc.peer_address": "172.24.0.5:42110", "grpc.peer_subject": "CN=peer0.org1.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "209.0769ms"} +peer0.org1.example.com | [08b 01-09 07:46:03.02 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T07:46:03.018Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.24.0.7:55072", "grpc.code": "OK", "grpc.call_duration": "5.2914ms"} +orderer0.example.com | Metrics.Statsd.Network = "udp" +peer1.org2.example.com | [04c 01-09 07:44:18.81 UTC] [%{longpkg}] %{callpath} -> WARN Closing connection to Endpoint: peer0.org2.example.com:7051, InternalEndpoint: peer0.org2.example.com:7051, PKI-ID: 08a78261d5cf98650084a8b632cf100db1b4fe2b3a3cff312a132fcf2ef0ec05, Metadata: +peer0.org2.example.com | [047 01-09 07:44:18.71 UTC] [%{longpkg}] %{callpath} -> WARN Entering [099f13cbe2db0d065da1feceffb3833bdda3e3ec7893a40a37b60bd0b54245d9] +peer0.org1.example.com | [08c 01-09 07:46:03.56 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][1efc0ade] Entry chaincode: name:"cscc" +orderer0.example.com | Metrics.Statsd.Address = "127.0.0.1:8125" +peer1.org2.example.com | [04d 01-09 07:44:18.81 UTC] [%{longpkg}] %{callpath} -> WARN Exiting +peer0.org2.example.com | [048 01-09 07:44:18.71 UTC] [%{longpkg}] %{callpath} -> WARN Closing connection to Endpoint: peer0.org1.example.com:7051, InternalEndpoint: , PKI-ID: 099f13cbe2db0d065da1feceffb3833bdda3e3ec7893a40a37b60bd0b54245d9, Metadata: +peer0.org1.example.com | [08d 01-09 07:46:03.56 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][1efc0ade] Exit chaincode: name:"cscc" (1ms) +orderer0.example.com | Metrics.Statsd.WriteInterval = 30s +peer1.org2.example.com | [04e 01-09 07:44:19.23 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T07:44:19.237Z", "grpc.service": "gossip.Gossip", "grpc.method": "Ping", "grpc.request_deadline": "2019-01-09T07:44:21.236Z", "grpc.peer_address": "172.24.0.5:51090", "grpc.peer_subject": "CN=peer0.org1.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "126.7µs"} +peer0.org2.example.com | [049 01-09 07:44:18.71 UTC] [%{longpkg}] %{callpath} -> WARN Exiting +peer0.org1.example.com | [08e 01-09 07:46:03.56 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T07:46:03.559Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.24.0.7:55076", "grpc.code": "OK", "grpc.call_duration": "3.4588ms"} +orderer0.example.com | Metrics.Statsd.Prefix = "" +peer1.org2.example.com | [04f 01-09 07:44:19.87 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T07:44:19.874Z", "grpc.service": "gossip.Gossip", "grpc.method": "Ping", "grpc.request_deadline": "2019-01-09T07:44:21.874Z", "grpc.peer_address": "172.24.0.3:60224", "grpc.peer_subject": "CN=peer0.org2.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "121.2µs"} +peer0.org2.example.com | [04a 01-09 07:44:18.72 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T07:44:18.612Z", "grpc.service": "gossip.Gossip", "grpc.method": "GossipStream", "grpc.request_deadline": "2019-01-09T07:44:28.612Z", "grpc.peer_address": "172.24.0.6:36314", "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": "111.7141ms"} +peer0.org1.example.com | [08f 01-09 07:46:03.78 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][a4ee9686] Entry chaincode: name:"cscc" +orderer0.example.com | [003 01-09 07:44:02.98 UTC] [%{longpkg}] %{callpath} -> INFO Starting orderer with TLS enabled +peer1.org2.example.com | [050 01-09 07:44:20.17 UTC] [%{longpkg}] %{callpath} -> WARN StateInfo message GossipMessage: Channel: , nonce: 0, tag: CHAN_OR_ORG state_info_message: Timestamp:inc_num:1547019852152966900 seq_num:1547019858625765600 PKI-id:482094cf2bc8367e587f6a273f0b737644cb755b4d5befb5716353f673ecbd10 channel MAC:54df3444e12fb3443c89c01f89f29f9883ddc5bba4088ec52f350ebe66293124 properties:ledger_height:3 , Envelope: 98 bytes, Signature: 70 bytes is found invalid: PKIID wasn't found +peer0.org2.example.com | [04b 01-09 07:44:18.72 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Committed block [1] with 1 transaction(s) in 32ms (state_validation=1ms block_commit=23ms state_commit=4ms) +peer0.org1.example.com | [090 01-09 07:46:03.78 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][a4ee9686] Exit chaincode: name:"cscc" (1ms) +orderer0.example.com | [004 01-09 07:44:02.99 UTC] [%{longpkg}] %{callpath} -> INFO Getting block information from block storage +peer0.org2.example.com | [04c 01-09 07:44:18.72 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Received block [2] from buffer +peer0.org1.example.com | [091 01-09 07:46:03.79 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T07:46:03.785Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.24.0.7:55080", "grpc.code": "OK", "grpc.call_duration": "8.0175ms"} +orderer0.example.com | [005 01-09 07:44:03.06 UTC] [%{longpkg}] %{callpath} -> INFO Starting system channel 'testchainid' with genesis block hash 11eb25c13ca75dfd372258c750d5f8b4e7935b5cea9abbbf28bc7ed93851b4e3 and orderer type solo +peer1.org2.example.com | [051 01-09 07:44:20.17 UTC] [%{longpkg}] %{callpath} -> WARN Message GossipMessage: Channel: , nonce: 0, tag: CHAN_OR_ORG state_info_message: Timestamp:inc_num:1547019852152966900 seq_num:1547019858625765600 PKI-id:482094cf2bc8367e587f6a273f0b737644cb755b4d5befb5716353f673ecbd10 channel MAC:54df3444e12fb3443c89c01f89f29f9883ddc5bba4088ec52f350ebe66293124 properties:ledger_height:3 , Envelope: 98 bytes, Signature: 70 bytes isn't valid +peer0.org2.example.com | [04d 01-09 07:44:18.76 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T07:44:18.759Z", "grpc.service": "gossip.Gossip", "grpc.method": "Ping", "grpc.request_deadline": "2019-01-09T07:44:20.755Z", "grpc.peer_address": "172.24.0.6:36324", "grpc.peer_subject": "CN=peer1.org1.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "1.4995ms"} +peer0.org1.example.com | [092 01-09 07:46:04.00 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][2af78623] Entry chaincode: name:"cscc" +orderer0.example.com | [006 01-09 07:44:03.06 UTC] [%{longpkg}] %{callpath} -> INFO Starting orderer: +peer1.org2.example.com | [052 01-09 07:44:22.73 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]] +peer0.org2.example.com | [04e 01-09 07:44:18.78 UTC] [%{longpkg}] %{callpath} -> INFO Joining gossip network of channel businesschannel with 2 organizations +peer0.org1.example.com | [093 01-09 07:46:04.00 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][2af78623] Exit chaincode: name:"cscc" (3ms) +orderer0.example.com | Version: 1.4.0 +peer0.org2.example.com | [04f 01-09 07:44:18.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 | [053 01-09 07:44:24.66 UTC] [%{longpkg}] %{callpath} -> INFO [][19363b5f] Entry chaincode: name:"lscc" +peer0.org1.example.com | [094 01-09 07:46:04.01 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T07:46:04.004Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.24.0.7:55084", "grpc.code": "OK", "grpc.call_duration": "6.2782ms"} +peer0.org1.example.com | [095 01-09 07:46:14.66 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Received block [6] from buffer +orderer0.example.com | Commit SHA: development build +peer1.org2.example.com | [054 01-09 07:44:24.66 UTC] [%{longpkg}] %{callpath} -> INFO Installed Chaincode [exp02] Version [1.0] to peer +peer0.org1.example.com | [096 01-09 07:46:14.66 UTC] [%{longpkg}] %{callpath} -> WARN De-duplicating identity [Org1MSP4a990d9ddc475ae0c719a406e0fbf388bcf3fe81bfd34a9c11f3a18eb4a4ed23] at index 2 in signature set +orderer0.example.com | Go version: go1.11.4 +peer0.org2.example.com | [050 01-09 07:44:18.79 UTC] [%{longpkg}] %{callpath} -> INFO Learning about the configured anchor peers of Org2MSP for channel businesschannel : [{peer0.org2.example.com 7051}] +peer1.org2.example.com | [055 01-09 07:44:24.66 UTC] [%{longpkg}] %{callpath} -> INFO [][19363b5f] Exit chaincode: name:"lscc" (3ms) +peer0.org1.example.com | [097 01-09 07:46:14.66 UTC] [%{longpkg}] %{callpath} -> WARN De-duplicating identity [Org1MSP4a990d9ddc475ae0c719a406e0fbf388bcf3fe81bfd34a9c11f3a18eb4a4ed23] at index 2 in signature set +orderer0.example.com | OS/Arch: linux/amd64 +peer0.org2.example.com | [051 01-09 07:44:18.79 UTC] [%{longpkg}] %{callpath} -> INFO Anchor peer with same endpoint, skipping connecting to myself +peer1.org2.example.com | [056 01-09 07:44:24.66 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T07:44:24.66Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.24.0.7:51706", "grpc.code": "OK", "grpc.call_duration": "5.8236ms"} +peer0.org1.example.com | [098 01-09 07:46:14.71 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T07:46:14.715Z", "grpc.service": "gossip.Gossip", "grpc.method": "Ping", "grpc.request_deadline": "2019-01-09T07:46:16.715Z", "grpc.peer_address": "172.24.0.3:48446", "grpc.peer_subject": "CN=peer0.org2.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "128.5µs"} +orderer0.example.com | [007 01-09 07:44:03.06 UTC] [%{longpkg}] %{callpath} -> INFO Beginning to serve requests +peer0.org2.example.com | [052 01-09 07:44:18.80 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T07:44:18.801Z", "grpc.service": "gossip.Gossip", "grpc.method": "Ping", "grpc.request_deadline": "2019-01-09T07:44:20.801Z", "grpc.peer_address": "172.24.0.4:50770", "grpc.peer_subject": "CN=peer1.org2.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "119µs"} +peer1.org2.example.com | [057 01-09 07:44:26.62 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T07:44:26.622Z", "grpc.service": "gossip.Gossip", "grpc.method": "Ping", "grpc.request_deadline": "2019-01-09T07:44:28.621Z", "grpc.peer_address": "172.24.0.6:33106", "grpc.peer_subject": "CN=peer1.org1.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "215.9µs"} +peer0.org1.example.com | [099 01-09 07:46:14.71 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T07:46:14.718Z", "grpc.service": "gossip.Gossip", "grpc.method": "Ping", "grpc.request_deadline": "2019-01-09T07:46:16.715Z", "grpc.peer_address": "172.24.0.4:41756", "grpc.peer_subject": "CN=peer1.org2.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "143.2µs"} +orderer0.example.com | [008 01-09 07:44:10.95 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T07:44:10.886Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Broadcast", "grpc.peer_address": "172.24.0.7:39098", "grpc.code": "OK", "grpc.call_duration": "70.6496ms"} +peer0.org2.example.com | [053 01-09 07:44:18.81 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T07:44:06.674Z", "grpc.service": "gossip.Gossip", "grpc.method": "GossipStream", "grpc.peer_address": "172.24.0.4:50690", "grpc.peer_subject": "CN=peer1.org2.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "12.1361415s"} +peer1.org2.example.com | [058 01-09 07:44:32.73 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:7051 ] [peer0.org2.example.com:7051]] +peer0.org1.example.com | [09a 01-09 07:46:14.73 UTC] [%{longpkg}] %{callpath} -> INFO Joining gossip network of channel businesschannel with 3 organizations +orderer0.example.com | [009 01-09 07:44:10.96 UTC] [%{longpkg}] %{callpath} -> INFO Getting block information from block storage +peer0.org2.example.com | [054 01-09 07:44:18.81 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T07:44:18.809Z", "grpc.service": "gossip.Gossip", "grpc.method": "GossipStream", "grpc.request_deadline": "2019-01-09T07:44:28.806Z", "grpc.peer_address": "172.24.0.4:50770", "grpc.peer_subject": "CN=peer1.org2.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "2.2754ms"} +peer1.org2.example.com | [059 01-09 07:45:08.55 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T07:45:08.554Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.24.0.7:51750", "grpc.code": "OK", "grpc.call_duration": "2.2295ms"} +peer0.org1.example.com | [09b 01-09 07:46:14.74 UTC] [%{longpkg}] %{callpath} -> INFO Learning about the configured anchor peers of Org1MSP for channel businesschannel : [{peer0.org1.example.com 7051}] +orderer0.example.com | [00a 01-09 07:44:11.13 UTC] [%{longpkg}] %{callpath} -> INFO Created and starting new chain businesschannel +peer0.org2.example.com | [055 01-09 07:44:18.84 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Validated block [2] in 113ms +peer1.org2.example.com | [05a 01-09 07:45:09.93 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Received block [3] from buffer +peer0.org1.example.com | [09c 01-09 07:46:14.74 UTC] [%{longpkg}] %{callpath} -> INFO Anchor peer with same endpoint, skipping connecting to myself +orderer0.example.com | [00b 01-09 07:44:11.14 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T07:44:10.869Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.24.0.7:39096", "grpc.code": "OK", "grpc.call_duration": "270.7479ms"} +peer0.org2.example.com | [056 01-09 07:44:18.87 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Committed block [2] with 1 transaction(s) in 35ms (state_validation=3ms block_commit=24ms state_commit=4ms) +peer1.org2.example.com | [05b 01-09 07:45:09.94 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Validated block [3] in 7ms +peer0.org1.example.com | [09d 01-09 07:46:14.74 UTC] [%{longpkg}] %{callpath} -> INFO Learning about the configured anchor peers of Org2MSP for channel businesschannel : [{peer0.org2.example.com 7051}] +orderer0.example.com | [00c 01-09 07:44:15.99 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.24.0.7:39124: rpc error: code = Canceled desc = context canceled +peer0.org2.example.com | [057 01-09 07:44:22.38 UTC] [%{longpkg}] %{callpath} -> INFO Membership view has changed. peers went online: [[peer1.org1.example.com:7051 ] [peer0.org1.example.com:7051 ]] , current view: [[peer1.org2.example.com:7051] [peer1.org1.example.com:7051 ] [peer0.org1.example.com:7051 ]] +peer1.org2.example.com | [05c 01-09 07:45:09.94 UTC] [%{longpkg}] %{callpath} -> INFO Channel [businesschannel]: Handling deploy or update of chaincode [exp02] +peer0.org1.example.com | [09e 01-09 07:46:14.74 UTC] [%{longpkg}] %{callpath} -> INFO No configured anchor peers of Org3MSP for channel businesschannel to learn about +peer0.org2.example.com | [058 01-09 07:44:23.63 UTC] [%{longpkg}] %{callpath} -> INFO [][72c2b2e7] Entry chaincode: name:"lscc" +orderer0.example.com | [00d 01-09 07:44:15.99 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T07:44:15.935Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.24.0.7:39124", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "60.6194ms"} +peer1.org2.example.com | [05d 01-09 07:45:09.97 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Committed block [3] with 1 transaction(s) in 27ms (state_validation=4ms block_commit=13ms state_commit=3ms) +peer0.org1.example.com | [09f 01-09 07:46:14.82 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Validated block [6] in 164ms +peer0.org2.example.com | [059 01-09 07:44:23.63 UTC] [%{longpkg}] %{callpath} -> INFO Installed Chaincode [exp02] Version [1.0] to peer +orderer0.example.com | [00e 01-09 07:44:15.99 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.24.0.7:39126: rpc error: code = Canceled desc = context canceled +peer1.org2.example.com | [05e 01-09 07:45:10.82 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][6d84e548] Entry chaincode: name:"exp02" +peer0.org2.example.com | [05a 01-09 07:44:23.64 UTC] [%{longpkg}] %{callpath} -> INFO [][72c2b2e7] Exit chaincode: name:"lscc" (1ms) +peer0.org1.example.com | [0a0 01-09 07:46:14.84 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T07:44:18.858Z", "grpc.service": "gossip.Gossip", "grpc.method": "GossipStream", "grpc.peer_address": "172.24.0.3:48230", "grpc.peer_subject": "CN=peer0.org2.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "1m56.1264392s"} +orderer0.example.com | [00f 01-09 07:44:15.99 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T07:44:15.95Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Broadcast", "grpc.peer_address": "172.24.0.7:39126", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "47.1097ms"} +peer1.org2.example.com | [05f 01-09 07:45:10.83 UTC] [%{longpkg}] %{callpath} -> INFO building chaincode with ldflagsOpt: '-ldflags "-linkmode external -extldflags '-static'"' +peer0.org2.example.com | [05b 01-09 07:44:23.64 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T07:44:23.637Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.24.0.7:34462", "grpc.code": "OK", "grpc.call_duration": "3.1369ms"} +peer0.org1.example.com | [0a1 01-09 07:46:14.85 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T07:46:14.725Z", "grpc.service": "gossip.Gossip", "grpc.method": "GossipStream", "grpc.request_deadline": "2019-01-09T07:46:24.719Z", "grpc.peer_address": "172.24.0.3:48446", "grpc.peer_subject": "CN=peer0.org2.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "131.6606ms"} +orderer0.example.com | [010 01-09 07:44:18.29 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.24.0.7:39138: rpc error: code = Canceled desc = context canceled +peer1.org2.example.com | [060 01-09 07:45:54.98 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][6d84e548] Exit chaincode: name:"exp02" (44233ms) +peer0.org2.example.com | [05c 01-09 07:45:09.91 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Received block [3] from buffer +peer0.org1.example.com | [0a2 01-09 07:46:14.86 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Committed block [6] with 1 transaction(s) in 28ms (state_validation=1ms block_commit=19ms state_commit=4ms) +orderer0.example.com | [011 01-09 07:44:18.29 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T07:44:18.191Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.24.0.7:39138", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "102.0702ms"} +peer1.org2.example.com | [061 01-09 07:45:54.98 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T07:45:10.818Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.24.0.7:51756", "grpc.code": "OK", "grpc.call_duration": "44.2367256s"} +peer0.org2.example.com | [05d 01-09 07:45:09.91 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Validated block [3] in 5ms +peer0.org1.example.com | [0a3 01-09 07:46:14.88 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T07:46:14.883Z", "grpc.service": "gossip.Gossip", "grpc.method": "Ping", "grpc.request_deadline": "2019-01-09T07:46:16.883Z", "grpc.peer_address": "172.24.0.6:47584", "grpc.peer_subject": "CN=peer1.org1.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "163.9µs"} +orderer0.example.com | [012 01-09 07:44:18.29 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.24.0.7:39140: rpc error: code = Canceled desc = context canceled +peer1.org2.example.com | [062 01-09 07:45:55.78 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][0de3f014] Entry chaincode: name:"exp02" +peer0.org2.example.com | [05e 01-09 07:45:09.92 UTC] [%{longpkg}] %{callpath} -> INFO Channel [businesschannel]: Handling deploy or update of chaincode [exp02] +peer0.org1.example.com | [0a4 01-09 07:46:14.89 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T07:46:14.792Z", "grpc.service": "gossip.Gossip", "grpc.method": "GossipStream", "grpc.request_deadline": "2019-01-09T07:46:24.792Z", "grpc.peer_address": "172.24.0.4:41756", "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": "104.8958ms"} +orderer0.example.com | [013 01-09 07:44:18.30 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T07:44:18.203Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Broadcast", "grpc.peer_address": "172.24.0.7:39140", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "96.6034ms"} +peer1.org2.example.com | [063 01-09 07:45:55.79 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][0de3f014] Exit chaincode: name:"exp02" (5ms) +peer0.org2.example.com | [05f 01-09 07:45:09.94 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Committed block [3] with 1 transaction(s) in 26ms (state_validation=1ms block_commit=15ms state_commit=4ms) +peer0.org1.example.com | [0a5 01-09 07:46:14.91 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T07:46:14.91Z", "grpc.service": "gossip.Gossip", "grpc.method": "Ping", "grpc.request_deadline": "2019-01-09T07:46:16.91Z", "grpc.peer_address": "172.24.0.4:41770", "grpc.peer_subject": "CN=peer1.org2.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "139.8µs"} +orderer0.example.com | [014 01-09 07:45:07.89 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.24.0.7:39198: rpc error: code = Canceled desc = context canceled +peer1.org2.example.com | [064 01-09 07:45:55.79 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T07:45:55.782Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.24.0.7:51798", "grpc.code": "OK", "grpc.call_duration": "10.4814ms"} +peer0.org2.example.com | [060 01-09 07:45:57.51 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Received block [4] from buffer +peer0.org1.example.com | [0a6 01-09 07:46:14.91 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T07:44:18.577Z", "grpc.service": "gossip.Gossip", "grpc.method": "GossipStream", "grpc.peer_address": "172.24.0.6:47350", "grpc.peer_subject": "CN=peer1.org1.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "1m56.4737676s"} +orderer0.example.com | [015 01-09 07:45:07.90 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T07:44:25.191Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Broadcast", "grpc.peer_address": "172.24.0.7:39198", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "42.7432064s"} +peer1.org2.example.com | [065 01-09 07:45:57.52 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Received block [4] from buffer +peer0.org2.example.com | [061 01-09 07:45:57.51 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Validated block [4] in 1ms +peer0.org1.example.com | [0a7 01-09 07:46:14.91 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T07:46:14.898Z", "grpc.service": "gossip.Gossip", "grpc.method": "GossipStream", "grpc.request_deadline": "2019-01-09T07:46:24.895Z", "grpc.peer_address": "172.24.0.6:47584", "grpc.peer_subject": "CN=peer1.org1.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "13.802ms"} +orderer0.example.com | [016 01-09 07:45:55.50 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.24.0.7:39278: rpc error: code = Canceled desc = context canceled +peer1.org2.example.com | [066 01-09 07:45:57.53 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Validated block [4] in 3ms +peer0.org2.example.com | [062 01-09 07:45:57.54 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Committed block [4] with 1 transaction(s) in 27ms (state_validation=1ms block_commit=13ms state_commit=4ms) +peer0.org1.example.com | [0a8 01-09 07:46:14.91 UTC] [%{longpkg}] %{callpath} -> WARN peer0.org2.example.com:7051, PKIid:08a78261d5cf98650084a8b632cf100db1b4fe2b3a3cff312a132fcf2ef0ec05 isn't responsive: EOF +orderer0.example.com | [017 01-09 07:45:55.50 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T07:45:55.258Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Broadcast", "grpc.peer_address": "172.24.0.7:39278", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "250.1132ms"} +peer1.org2.example.com | [067 01-09 07:45:57.57 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Committed block [4] with 1 transaction(s) in 41ms (state_validation=3ms block_commit=24ms state_commit=3ms) +peer0.org2.example.com | [063 01-09 07:46:00.24 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Received block [5] from buffer +peer0.org1.example.com | [0a9 01-09 07:46:14.92 UTC] [%{longpkg}] %{callpath} -> WARN Entering [08a78261d5cf98650084a8b632cf100db1b4fe2b3a3cff312a132fcf2ef0ec05] +orderer0.example.com | [018 01-09 07:45:58.23 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.24.0.7:39294: rpc error: code = Canceled desc = context canceled +peer1.org2.example.com | [068 01-09 07:45:57.98 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][3ee57f9b] Entry chaincode: name:"exp02" +peer0.org2.example.com | [064 01-09 07:46:00.24 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Validated block [5] in 3ms +peer0.org1.example.com | [0aa 01-09 07:46:14.92 UTC] [%{longpkg}] %{callpath} -> WARN Closing connection to Endpoint: peer0.org2.example.com:7051, InternalEndpoint: , PKI-ID: 08a78261d5cf98650084a8b632cf100db1b4fe2b3a3cff312a132fcf2ef0ec05, Metadata: +orderer0.example.com | [019 01-09 07:45:58.23 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T07:45:58.185Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Broadcast", "grpc.peer_address": "172.24.0.7:39294", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "50.2328ms"} +peer1.org2.example.com | [069 01-09 07:45:57.99 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][3ee57f9b] Exit chaincode: name:"exp02" (11ms) +peer0.org2.example.com | [065 01-09 07:46:00.29 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Committed block [5] with 1 transaction(s) in 42ms (state_validation=1ms block_commit=15ms state_commit=5ms) +peer0.org1.example.com | [0ab 01-09 07:46:14.92 UTC] [%{longpkg}] %{callpath} -> WARN Exiting +orderer0.example.com | [01a 01-09 07:46:04.59 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.24.0.7:39350: rpc error: code = Canceled desc = context canceled +peer1.org2.example.com | [06a 01-09 07:45:57.99 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T07:45:57.982Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.24.0.7:51804", "grpc.code": "OK", "grpc.call_duration": "15.2192ms"} +peer0.org2.example.com | [066 01-09 07:46:14.63 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Received block [6] from buffer +peer0.org1.example.com | [0ac 01-09 07:46:28.23 UTC] [%{longpkg}] %{callpath} -> INFO [][603a5d51] Entry chaincode: name:"cscc" +orderer0.example.com | [01b 01-09 07:46:04.59 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T07:46:04.586Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.24.0.7:39350", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "7.2651ms"} +peer1.org2.example.com | [06b 01-09 07:45:58.19 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][ab578584] Entry chaincode: name:"exp02" +peer0.org2.example.com | [067 01-09 07:46:14.63 UTC] [%{longpkg}] %{callpath} -> WARN De-duplicating identity [Org1MSP4a990d9ddc475ae0c719a406e0fbf388bcf3fe81bfd34a9c11f3a18eb4a4ed23] at index 2 in signature set +peer0.org1.example.com | [0ad 01-09 07:46:28.23 UTC] [%{longpkg}] %{callpath} -> INFO [][603a5d51] Exit chaincode: name:"cscc" (1ms) +orderer0.example.com | [01c 01-09 07:46:04.84 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.24.0.7:39352: rpc error: code = Canceled desc = context canceled +orderer0.example.com | [01d 01-09 07:46:04.84 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T07:46:04.827Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.24.0.7:39352", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "12.971ms"} +peer0.org2.example.com | [068 01-09 07:46:14.64 UTC] [%{longpkg}] %{callpath} -> WARN De-duplicating identity [Org1MSP4a990d9ddc475ae0c719a406e0fbf388bcf3fe81bfd34a9c11f3a18eb4a4ed23] at index 2 in signature set +peer0.org1.example.com | [0ae 01-09 07:46:28.23 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T07:46:28.236Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.24.0.7:55194", "grpc.code": "OK", "grpc.call_duration": "2.3614ms"} +orderer0.example.com | [01e 01-09 07:46:05.00 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.24.0.7:39354: rpc error: code = Canceled desc = context canceled +peer0.org2.example.com | [069 01-09 07:46:14.69 UTC] [%{longpkg}] %{callpath} -> INFO Joining gossip network of channel businesschannel with 3 organizations +peer1.org2.example.com | [06c 01-09 07:45:58.21 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][ab578584] Exit chaincode: name:"exp02" (24ms) +peer0.org1.example.com | [0af 01-09 07:46:29.62 UTC] [%{longpkg}] %{callpath} -> INFO [][be515b7e] Entry chaincode: name:"qscc" +orderer0.example.com | [01f 01-09 07:46:05.00 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T07:46:04.992Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.24.0.7:39354", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "14.9028ms"} +peer0.org2.example.com | [06a 01-09 07:46:14.70 UTC] [%{longpkg}] %{callpath} -> INFO Learning about the configured anchor peers of Org1MSP for channel businesschannel : [{peer0.org1.example.com 7051}] +peer1.org2.example.com | [06d 01-09 07:45:58.21 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T07:45:58.188Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.24.0.7:51808", "grpc.code": "OK", "grpc.call_duration": "28.1496ms"} +peer0.org1.example.com | [0b0 01-09 07:46:29.63 UTC] [%{longpkg}] %{callpath} -> INFO [][be515b7e] Exit chaincode: name:"qscc" (6ms) +orderer0.example.com | [020 01-09 07:46:05.20 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.24.0.7:39356: rpc error: code = Canceled desc = context canceled +peer0.org2.example.com | [06b 01-09 07:46:14.70 UTC] [%{longpkg}] %{callpath} -> INFO Learning about the configured anchor peers of Org2MSP for channel businesschannel : [{peer0.org2.example.com 7051}] +peer1.org2.example.com | [06e 01-09 07:46:00.25 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Received block [5] from buffer +peer0.org1.example.com | [0b1 01-09 07:46:29.63 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T07:46:29.626Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.24.0.7:55202", "grpc.code": "OK", "grpc.call_duration": "11.4575ms"} +orderer0.example.com | [021 01-09 07:46:05.20 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T07:46:05.189Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.24.0.7:39356", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "14.1919ms"} +peer0.org2.example.com | [06c 01-09 07:46:14.71 UTC] [%{longpkg}] %{callpath} -> INFO Anchor peer with same endpoint, skipping connecting to myself +peer1.org2.example.com | [06f 01-09 07:46:00.26 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Validated block [5] in 9ms +orderer0.example.com | [022 01-09 07:46:05.41 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.24.0.7:39358: rpc error: code = Canceled desc = context canceled +peer0.org2.example.com | [06d 01-09 07:46:14.71 UTC] [%{longpkg}] %{callpath} -> INFO No configured anchor peers of Org3MSP for channel businesschannel to learn about +peer1.org2.example.com | [070 01-09 07:46:00.30 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Committed block [5] with 1 transaction(s) in 30ms (state_validation=3ms block_commit=18ms state_commit=4ms) +orderer0.example.com | [023 01-09 07:46:05.41 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T07:46:05.403Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.24.0.7:39358", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "13.7488ms"} +peer0.org2.example.com | [06e 01-09 07:46:14.73 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T07:46:14.734Z", "grpc.service": "gossip.Gossip", "grpc.method": "Ping", "grpc.request_deadline": "2019-01-09T07:46:16.734Z", "grpc.peer_address": "172.24.0.4:50988", "grpc.peer_subject": "CN=peer1.org2.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "110.4µs"} +orderer0.example.com | [024 01-09 07:46:05.70 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.24.0.7:39360: rpc error: code = Canceled desc = context canceled +peer0.org2.example.com | [06f 01-09 07:46:14.74 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Validated block [6] in 104ms +peer1.org2.example.com | [071 01-09 07:46:14.64 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Received block [6] from buffer +orderer0.example.com | [025 01-09 07:46:05.70 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T07:46:05.679Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.24.0.7:39360", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "22.3594ms"} +peer0.org2.example.com | [070 01-09 07:46:14.78 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T07:46:14.773Z", "grpc.service": "gossip.Gossip", "grpc.method": "GossipStream", "grpc.request_deadline": "2019-01-09T07:46:24.773Z", "grpc.peer_address": "172.24.0.4:50988", "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.5443ms"} +peer1.org2.example.com | [072 01-09 07:46:14.64 UTC] [%{longpkg}] %{callpath} -> WARN De-duplicating identity [Org1MSP4a990d9ddc475ae0c719a406e0fbf388bcf3fe81bfd34a9c11f3a18eb4a4ed23] at index 2 in signature set +orderer0.example.com | [026 01-09 07:46:05.97 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.24.0.7:39362: rpc error: code = Canceled desc = context canceled +peer0.org2.example.com | [071 01-09 07:46:14.80 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Committed block [6] with 1 transaction(s) in 59ms (state_validation=1ms block_commit=45ms state_commit=5ms) +peer1.org2.example.com | [073 01-09 07:46:14.64 UTC] [%{longpkg}] %{callpath} -> WARN De-duplicating identity [Org1MSP4a990d9ddc475ae0c719a406e0fbf388bcf3fe81bfd34a9c11f3a18eb4a4ed23] at index 2 in signature set +orderer0.example.com | [027 01-09 07:46:05.97 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T07:46:05.928Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.24.0.7:39362", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "45.5106ms"} +peer0.org2.example.com | [072 01-09 07:46:14.81 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T07:46:14.814Z", "grpc.service": "gossip.Gossip", "grpc.method": "Ping", "grpc.request_deadline": "2019-01-09T07:46:16.813Z", "grpc.peer_address": "172.24.0.6:36554", "grpc.peer_subject": "CN=peer1.org1.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "960.9µs"} +peer1.org2.example.com | [074 01-09 07:46:14.67 UTC] [%{longpkg}] %{callpath} -> INFO Joining gossip network of channel businesschannel with 3 organizations +orderer0.example.com | [028 01-09 07:46:06.22 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.24.0.7:39364: rpc error: code = Canceled desc = context canceled +peer0.org2.example.com | [073 01-09 07:46:14.83 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T07:44:18.763Z", "grpc.service": "gossip.Gossip", "grpc.method": "GossipStream", "grpc.peer_address": "172.24.0.6:36324", "grpc.peer_subject": "CN=peer1.org1.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "1m56.2134671s"} +peer1.org2.example.com | [075 01-09 07:46:14.67 UTC] [%{longpkg}] %{callpath} -> INFO Learning about the configured anchor peers of Org1MSP for channel businesschannel : [{peer0.org1.example.com 7051}] +orderer0.example.com | [029 01-09 07:46:06.22 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T07:46:06.21Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.24.0.7:39364", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "10.4762ms"} +peer0.org2.example.com | [074 01-09 07:46:14.84 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T07:46:14.823Z", "grpc.service": "gossip.Gossip", "grpc.method": "GossipStream", "grpc.request_deadline": "2019-01-09T07:46:24.823Z", "grpc.peer_address": "172.24.0.6:36554", "grpc.peer_subject": "CN=peer1.org1.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "19.9065ms"} +peer1.org2.example.com | [076 01-09 07:46:14.67 UTC] [%{longpkg}] %{callpath} -> INFO Learning about the configured anchor peers of Org2MSP for channel businesschannel : [{peer0.org2.example.com 7051}] +orderer0.example.com | [02a 01-09 07:46:06.45 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.24.0.7:39366: rpc error: code = Canceled desc = context canceled +peer0.org2.example.com | [075 01-09 07:46:14.87 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T07:46:14.872Z", "grpc.service": "gossip.Gossip", "grpc.method": "Ping", "grpc.request_deadline": "2019-01-09T07:46:16.871Z", "grpc.peer_address": "172.24.0.5:42354", "grpc.peer_subject": "CN=peer0.org1.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "114µs"} +peer1.org2.example.com | [077 01-09 07:46:14.67 UTC] [%{longpkg}] %{callpath} -> INFO No configured anchor peers of Org3MSP for channel businesschannel to learn about +peer0.org2.example.com | [076 01-09 07:46:14.89 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T07:46:14.889Z", "grpc.service": "gossip.Gossip", "grpc.method": "Ping", "grpc.request_deadline": "2019-01-09T07:46:16.886Z", "grpc.peer_address": "172.24.0.5:42358", "grpc.peer_subject": "CN=peer0.org1.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "355.7µs"} +peer1.org2.example.com | [078 01-09 07:46:14.67 UTC] [%{longpkg}] %{callpath} -> WARN Failed to update ordering service endpoints, due to Channel with businesschannel id was not found +orderer0.example.com | [02b 01-09 07:46:06.45 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T07:46:06.451Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.24.0.7:39366", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "7.4341ms"} +peer0.org2.example.com | [077 01-09 07:46:14.90 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T07:46:14.887Z", "grpc.service": "gossip.Gossip", "grpc.method": "GossipStream", "grpc.request_deadline": "2019-01-09T07:46:24.886Z", "grpc.peer_address": "172.24.0.5:42354", "grpc.peer_subject": "CN=peer0.org1.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "20.1235ms"} +peer0.org2.example.com | [078 01-09 07:46:14.90 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T07:46:14.905Z", "grpc.service": "gossip.Gossip", "grpc.method": "GossipStream", "grpc.peer_address": "172.24.0.5:42358", "grpc.peer_subject": "CN=peer0.org1.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "2.4945ms"} +peer0.org2.example.com | [079 01-09 07:46:14.92 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T07:46:14.928Z", "grpc.service": "gossip.Gossip", "grpc.method": "Ping", "grpc.request_deadline": "2019-01-09T07:46:16.928Z", "grpc.peer_address": "172.24.0.5:42362", "grpc.peer_subject": "CN=peer0.org1.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "128.9µs"} +peer0.org2.example.com | [07a 01-09 07:46:15.74 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T07:46:15.742Z", "grpc.service": "gossip.Gossip", "grpc.method": "Ping", "grpc.request_deadline": "2019-01-09T07:46:17.742Z", "grpc.peer_address": "172.24.0.4:51008", "grpc.peer_subject": "CN=peer1.org2.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "168.5µs"} +orderer0.example.com | [02c 01-09 07:46:06.67 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.24.0.7:39368: rpc error: code = Canceled desc = context canceled +peer0.org2.example.com | [07b 01-09 07:46:15.76 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T07:46:15.753Z", "grpc.service": "gossip.Gossip", "grpc.method": "GossipStream", "grpc.peer_address": "172.24.0.4:51008", "grpc.peer_subject": "CN=peer1.org2.example.com,L=San Francisco,ST=California,C=US", "error": "EOF", "grpc.code": "Unknown", "grpc.call_duration": "14.6324ms"} +peer1.org2.example.com | [079 01-09 07:46:14.69 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Validated block [6] in 53ms +orderer0.example.com | [02d 01-09 07:46:06.67 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T07:46:06.662Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.24.0.7:39368", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "13.3884ms"} +peer0.org2.example.com | [07c 01-09 07:46:15.81 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T07:46:15.818Z", "grpc.service": "gossip.Gossip", "grpc.method": "Ping", "grpc.request_deadline": "2019-01-09T07:46:17.813Z", "grpc.peer_address": "172.24.0.6:36570", "grpc.peer_subject": "CN=peer1.org1.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "619µs"} +peer1.org2.example.com | [07a 01-09 07:46:14.76 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Committed block [6] with 1 transaction(s) in 66ms (state_validation=2ms block_commit=31ms state_commit=26ms) +orderer0.example.com | [02e 01-09 07:46:06.94 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.24.0.7:39370: rpc error: code = Canceled desc = context canceled +peer0.org2.example.com | [07d 01-09 07:46:16.12 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T07:46:16.12Z", "grpc.service": "gossip.Gossip", "grpc.method": "Ping", "grpc.request_deadline": "2019-01-09T07:46:18.119Z", "grpc.peer_address": "172.24.0.4:51016", "grpc.peer_subject": "CN=peer1.org2.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "188.3µs"} +peer1.org2.example.com | [07b 01-09 07:46:14.78 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T07:44:19.876Z", "grpc.service": "gossip.Gossip", "grpc.method": "GossipStream", "grpc.peer_address": "172.24.0.3:60224", "grpc.peer_subject": "CN=peer0.org2.example.com,L=San Francisco,ST=California,C=US", "error": "EOF", "grpc.code": "Unknown", "grpc.call_duration": "1m55.0450753s"} +orderer0.example.com | [02f 01-09 07:46:06.94 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T07:46:06.929Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.24.0.7:39370", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "12.4469ms"} +peer0.org2.example.com | [07e 01-09 07:46:16.15 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T07:46:16.13Z", "grpc.service": "gossip.Gossip", "grpc.method": "GossipStream", "grpc.peer_address": "172.24.0.4:51016", "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": "22.6712ms"} +orderer0.example.com | [030 01-09 07:46:07.21 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.24.0.7:39372: rpc error: code = Canceled desc = context canceled +peer1.org2.example.com | [07c 01-09 07:46:14.87 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T07:44:19.239Z", "grpc.service": "gossip.Gossip", "grpc.method": "GossipStream", "grpc.peer_address": "172.24.0.5:51090", "grpc.peer_subject": "CN=peer0.org1.example.com,L=San Francisco,ST=California,C=US", "error": "EOF", "grpc.code": "Unknown", "grpc.call_duration": "1m55.7724588s"} +peer0.org2.example.com | [07f 01-09 07:46:28.58 UTC] [%{longpkg}] %{callpath} -> INFO [][0c7184b1] Entry chaincode: name:"cscc" +orderer0.example.com | [031 01-09 07:46:07.21 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T07:46:07.205Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.24.0.7:39372", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "9.9044ms"} +peer1.org2.example.com | [07d 01-09 07:46:15.73 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T07:46:15.739Z", "grpc.service": "gossip.Gossip", "grpc.method": "Ping", "grpc.request_deadline": "2019-01-09T07:46:17.739Z", "grpc.peer_address": "172.24.0.3:60452", "grpc.peer_subject": "CN=peer0.org2.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "159.3µs"} +peer0.org2.example.com | [080 01-09 07:46:28.58 UTC] [%{longpkg}] %{callpath} -> INFO [][0c7184b1] Exit chaincode: name:"cscc" (1ms) +orderer0.example.com | [032 01-09 07:46:14.55 UTC] [%{longpkg}] %{callpath} -> WARN De-duplicating identity [Org1MSP4a990d9ddc475ae0c719a406e0fbf388bcf3fe81bfd34a9c11f3a18eb4a4ed23] at index 2 in signature set +peer1.org2.example.com | [07e 01-09 07:46:15.76 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T07:46:15.743Z", "grpc.service": "gossip.Gossip", "grpc.method": "GossipStream", "grpc.peer_address": "172.24.0.3:60452", "grpc.peer_subject": "CN=peer0.org2.example.com,L=San Francisco,ST=California,C=US", "error": "EOF", "grpc.code": "Unknown", "grpc.call_duration": "23.3255ms"} +peer0.org2.example.com | [081 01-09 07:46:28.58 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T07:46:28.581Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.24.0.7:34738", "grpc.code": "OK", "grpc.call_duration": "2.4478ms"} +orderer0.example.com | [033 01-09 07:46:14.56 UTC] [%{longpkg}] %{callpath} -> WARN De-duplicating identity [Org1MSP4a990d9ddc475ae0c719a406e0fbf388bcf3fe81bfd34a9c11f3a18eb4a4ed23] at index 2 in signature set +peer1.org2.example.com | [07f 01-09 07:46:16.08 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T07:46:16.082Z", "grpc.service": "gossip.Gossip", "grpc.method": "Ping", "grpc.request_deadline": "2019-01-09T07:46:18.082Z", "grpc.peer_address": "172.24.0.3:60460", "grpc.peer_subject": "CN=peer0.org2.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "185.4µs"} +peer1.org2.example.com | [080 01-09 07:46:16.15 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T07:46:16.093Z", "grpc.service": "gossip.Gossip", "grpc.method": "GossipStream", "grpc.peer_address": "172.24.0.3:60460", "grpc.peer_subject": "CN=peer0.org2.example.com,L=San Francisco,ST=California,C=US", "error": "EOF", "grpc.code": "Unknown", "grpc.call_duration": "64.0217ms"} +peer0.org2.example.com | [082 01-09 07:46:30.40 UTC] [%{longpkg}] %{callpath} -> INFO [][adaa2b99] Entry chaincode: name:"qscc" +orderer0.example.com | [034 01-09 07:46:14.58 UTC] [%{longpkg}] %{callpath} -> WARN De-duplicating identity [Org1MSP4a990d9ddc475ae0c719a406e0fbf388bcf3fe81bfd34a9c11f3a18eb4a4ed23] at index 2 in signature set +peer1.org2.example.com | [081 01-09 07:46:16.34 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T07:46:16.344Z", "grpc.service": "gossip.Gossip", "grpc.method": "Ping", "grpc.request_deadline": "2019-01-09T07:46:18.343Z", "grpc.peer_address": "172.24.0.3:60466", "grpc.peer_subject": "CN=peer0.org2.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "306.6µs"} +peer0.org2.example.com | [083 01-09 07:46:30.40 UTC] [%{longpkg}] %{callpath} -> INFO [][adaa2b99] Exit chaincode: name:"qscc" (3ms) +orderer0.example.com | [035 01-09 07:46:14.58 UTC] [%{longpkg}] %{callpath} -> WARN De-duplicating identity [Org1MSP4a990d9ddc475ae0c719a406e0fbf388bcf3fe81bfd34a9c11f3a18eb4a4ed23] at index 2 in signature set +peer1.org2.example.com | [082 01-09 07:46:28.77 UTC] [%{longpkg}] %{callpath} -> INFO [][01bf563a] Entry chaincode: name:"cscc" +peer0.org2.example.com | [084 01-09 07:46:30.40 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T07:46:30.399Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.24.0.7:34746", "grpc.code": "OK", "grpc.call_duration": "5.368ms"} +orderer0.example.com | [036 01-09 07:46:14.59 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.24.0.7:39378: rpc error: code = Canceled desc = context canceled +peer1.org2.example.com | [083 01-09 07:46:28.77 UTC] [%{longpkg}] %{callpath} -> INFO [][01bf563a] Exit chaincode: name:"cscc" (1ms) +orderer0.example.com | [037 01-09 07:46:14.60 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T07:46:14.546Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.24.0.7:39378", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "53.7333ms"} +peer1.org2.example.com | [084 01-09 07:46:28.77 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T07:46:28.774Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.24.0.7:51980", "grpc.code": "OK", "grpc.call_duration": "2.2285ms"} +orderer0.example.com | [038 01-09 07:46:14.60 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.24.0.7:39380: rpc error: code = Canceled desc = context canceled +peer1.org2.example.com | [085 01-09 07:46:30.79 UTC] [%{longpkg}] %{callpath} -> INFO [][52c6a8a1] Entry chaincode: name:"qscc" +peer1.org2.example.com | [086 01-09 07:46:30.80 UTC] [%{longpkg}] %{callpath} -> INFO [][52c6a8a1] Exit chaincode: name:"qscc" (3ms) +orderer0.example.com | [039 01-09 07:46:14.60 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T07:46:14.557Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Broadcast", "grpc.peer_address": "172.24.0.7:39380", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "43.7004ms"} +peer1.org2.example.com | [087 01-09 07:46:30.80 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T07:46:30.797Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.24.0.7:51988", "grpc.code": "OK", "grpc.call_duration": "4.2127ms"} +orderer0.example.com | [03a 01-09 07:46:17.02 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.24.0.7:39422: rpc error: code = Canceled desc = context canceled +orderer0.example.com | [03b 01-09 07:46:17.02 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T07:46:17.005Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.24.0.7:39422", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "16.4789ms"} +orderer0.example.com | [03c 01-09 07:46:17.26 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.24.0.7:39424: rpc error: code = Canceled desc = context canceled +orderer0.example.com | [03d 01-09 07:46:17.26 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T07:46:17.24Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.24.0.7:39424", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "20.3809ms"} +orderer0.example.com | [03e 01-09 07:46:18.35 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.24.0.7:39426: rpc error: code = Canceled desc = context canceled +orderer0.example.com | [03f 01-09 07:46:18.35 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T07:46:18.334Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.24.0.7:39426", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "17.9631ms"} +orderer0.example.com | [040 01-09 07:46:18.81 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.24.0.7:39428: rpc error: code = Canceled desc = context canceled +orderer0.example.com | [041 01-09 07:46:18.81 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T07:46:18.753Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.24.0.7:39428", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "59.6872ms"} +orderer0.example.com | [042 01-09 07:46:19.00 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.24.0.7:39430: rpc error: code = Canceled desc = context canceled +orderer0.example.com | [043 01-09 07:46:19.00 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T07:46:18.992Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.24.0.7:39430", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "9.5318ms"} +orderer0.example.com | [044 01-09 07:46:19.47 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.24.0.7:39432: rpc error: code = Canceled desc = context canceled +orderer0.example.com | [045 01-09 07:46:19.47 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T07:46:19.458Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.24.0.7:39432", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "15.0921ms"} +orderer0.example.com | [046 01-09 07:46:19.95 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.24.0.7:39434: rpc error: code = Canceled desc = context canceled +orderer0.example.com | [047 01-09 07:46:19.95 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T07:46:19.923Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.24.0.7:39434", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "30.292ms"} +orderer0.example.com | [048 01-09 07:46:20.62 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.24.0.7:39436: rpc error: code = Canceled desc = context canceled +orderer0.example.com | [049 01-09 07:46:20.62 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T07:46:20.56Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.24.0.7:39436", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "65.7681ms"} +orderer0.example.com | [04a 01-09 07:46:21.09 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.24.0.7:39438: rpc error: code = Canceled desc = context canceled +orderer0.example.com | [04b 01-09 07:46:21.09 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T07:46:21.084Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.24.0.7:39438", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "11.0362ms"} +orderer0.example.com | [04c 01-09 07:46:21.33 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.24.0.7:39440: rpc error: code = Canceled desc = context canceled +orderer0.example.com | [04d 01-09 07:46:21.33 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T07:46:21.319Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.24.0.7:39440", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "12.0573ms"} +orderer0.example.com | [04e 01-09 07:46:21.57 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.24.0.7:39442: rpc error: code = Canceled desc = context canceled +orderer0.example.com | [04f 01-09 07:46:21.57 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T07:46:21.553Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.24.0.7:39442", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "19.59ms"} +orderer0.example.com | [050 01-09 07:46:21.87 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.24.0.7:39444: rpc error: code = Canceled desc = context canceled +orderer0.example.com | [051 01-09 07:46:21.87 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T07:46:21.87Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.24.0.7:39444", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "8.3057ms"} +orderer0.example.com | [052 01-09 07:46:22.07 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.24.0.7:39446: rpc error: code = Canceled desc = context canceled +orderer0.example.com | [053 01-09 07:46:22.07 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T07:46:22.049Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.24.0.7:39446", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "24.7464ms"} +orderer0.example.com | [054 01-09 07:46:22.23 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.24.0.7:39448: rpc error: code = Canceled desc = context canceled +orderer0.example.com | [055 01-09 07:46:22.23 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T07:46:22.227Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.24.0.7:39448", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "10.3204ms"} +orderer0.example.com | [056 01-09 07:46:22.54 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.24.0.7:39450: rpc error: code = Canceled desc = context canceled +orderer0.example.com | [057 01-09 07:46:22.54 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T07:46:22.49Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.24.0.7:39450", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "51.0276ms"} diff --git a/hyperledger_fabric/latest/solo/logs/dev_orderer.log b/hyperledger_fabric/latest/solo/logs/dev_orderer.log index 7b1a4288..ec9cfb0c 100644 --- a/hyperledger_fabric/latest/solo/logs/dev_orderer.log +++ b/hyperledger_fabric/latest/solo/logs/dev_orderer.log @@ -1,5 +1,5 @@ -2018-12-19 08:04:01.931 UTC [localconfig] completeInitialization -> INFO 001 Kafka.Version unset, setting to 0.10.2.0 -[002 12-19 08:04:02.02 UTC] [%{longpkg}] %{callpath} -> INFO Orderer config values: +2019-01-09 07:44:02.686 UTC [localconfig] completeInitialization -> INFO 001 Kafka.Version unset, setting to 0.10.2.0 +[002 01-09 07:44:02.87 UTC] [%{longpkg}] %{callpath} -> INFO Orderer config values: General.LedgerType = "file" General.ListenAddress = "0.0.0.0" General.ListenPort = 7050 @@ -9,11 +9,19 @@ General.TLS.RootCAs = [/var/hyperledger/orderer/tls/ca.crt] General.TLS.ClientAuthRequired = false General.TLS.ClientRootCAs = [] - General.Cluster.RootCAs = [/etc/hyperledger/fabric/tls/ca.crt] + General.Cluster.ListenAddress = "" + General.Cluster.ListenPort = 0 + General.Cluster.ServerCertificate = "" + General.Cluster.ServerPrivateKey = "" General.Cluster.ClientCertificate = "" General.Cluster.ClientPrivateKey = "" + General.Cluster.RootCAs = [/etc/hyperledger/fabric/tls/ca.crt] General.Cluster.DialTimeout = 5s General.Cluster.RPCTimeout = 7s + General.Cluster.ReplicationBufferSize = 20971520 + General.Cluster.ReplicationPullTimeout = 5s + General.Cluster.ReplicationRetryTimeout = 5s + General.Cluster.ReplicationBackgroundRefreshInterval = 5m0s General.Keepalive.ServerMinInterval = 1m0s General.Keepalive.ServerInterval = 2h0m0s General.Keepalive.ServerTimeout = 20s @@ -23,8 +31,6 @@ General.GenesisFile = "/var/hyperledger/orderer/orderer.genesis.block" General.Profile.Enabled = false General.Profile.Address = "0.0.0.0:6060" - General.LogLevel = "INFO" - General.LogFormat = "%{color}[%{id:03x} %{time:01-02 15:04:05.00 MST}] [%{longpkg}] %{callpath} -> %{level:.4s}%{color:reset} %{message}" General.LocalMSPDir = "/var/hyperledger/orderer/msp" General.LocalMSPID = "OrdererMSP" General.BCCSP.ProviderName = "SW" @@ -33,6 +39,7 @@ General.BCCSP.SwOpts.Ephemeral = false General.BCCSP.SwOpts.FileKeystore.KeyStorePath = "/var/hyperledger/orderer/msp/keystore" General.BCCSP.SwOpts.DummyKeystore = + General.BCCSP.SwOpts.InmemKeystore = General.BCCSP.PluginOpts = General.Authentication.TimeWindow = 15m0s FileLedger.Location = "/var/hyperledger/production/orderer" @@ -64,54 +71,105 @@ Kafka.Topic.ReplicationFactor = 3 Debug.BroadcastTraceDir = "" Debug.DeliverTraceDir = "" -[003 12-19 08:04:02.07 UTC] [%{longpkg}] %{callpath} -> INFO Starting orderer with TLS enabled -[004 12-19 08:04:02.09 UTC] [%{longpkg}] %{callpath} -> INFO Getting block information from block storage -[005 12-19 08:04:02.11 UTC] [%{longpkg}] %{callpath} -> INFO Starting system channel 'testchainid' with genesis block hash 11eb25c13ca75dfd372258c750d5f8b4e7935b5cea9abbbf28bc7ed93851b4e3 and orderer type solo -[006 12-19 08:04:02.11 UTC] [%{longpkg}] %{callpath} -> INFO Starting orderer: + Consensus = map[WALDir:/var/hyperledger/production/orderer/etcdraft/wal SnapDir:/var/hyperledger/production/orderer/etcdraft/snapshot] + Operations.ListenAddress = "0.0.0.0:8443" + Operations.TLS.Enabled = false + Operations.TLS.PrivateKey = "" + Operations.TLS.Certificate = "" + Operations.TLS.RootCAs = [] + Operations.TLS.ClientAuthRequired = false + Operations.TLS.ClientRootCAs = [] + Metrics.Provider = "prometheus" + Metrics.Statsd.Network = "udp" + Metrics.Statsd.Address = "127.0.0.1:8125" + Metrics.Statsd.WriteInterval = 30s + Metrics.Statsd.Prefix = "" +[003 01-09 07:44:02.98 UTC] [%{longpkg}] %{callpath} -> INFO Starting orderer with TLS enabled +[004 01-09 07:44:02.99 UTC] [%{longpkg}] %{callpath} -> INFO Getting block information from block storage +[005 01-09 07:44:03.06 UTC] [%{longpkg}] %{callpath} -> INFO Starting system channel 'testchainid' with genesis block hash 11eb25c13ca75dfd372258c750d5f8b4e7935b5cea9abbbf28bc7ed93851b4e3 and orderer type solo +[006 01-09 07:44:03.06 UTC] [%{longpkg}] %{callpath} -> INFO Starting orderer: Version: 1.4.0 Commit SHA: development build - Go version: go1.10.4 + Go version: go1.11.4 OS/Arch: linux/amd64 -[007 12-19 08:04:02.11 UTC] [%{longpkg}] %{callpath} -> INFO Beginning to serve requests -[008 12-19 08:04:07.61 UTC] [%{longpkg}] %{callpath} -> INFO Getting block information from block storage -[009 12-19 08:04:07.62 UTC] [%{longpkg}] %{callpath} -> INFO Created and starting new chain businesschannel -[00a 12-19 08:04:11.67 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.18.0.3:59536: rpc error: code = Canceled desc = context canceled -[00b 12-19 08:04:11.68 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.18.0.3:59538: rpc error: code = Canceled desc = context canceled -[00c 12-19 08:04:13.87 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.18.0.3:59540: rpc error: code = Canceled desc = context canceled -[00d 12-19 08:04:13.87 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.18.0.3:59542: rpc error: code = Canceled desc = context canceled -[00e 12-19 08:05:02.75 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.18.0.3:59604: rpc error: code = Canceled desc = context canceled -[00f 12-19 08:05:46.54 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.18.0.3:59622: rpc error: code = Canceled desc = context canceled -[010 12-19 08:05:49.85 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.18.0.3:59636: rpc error: code = Canceled desc = context canceled -[011 12-19 08:05:58.37 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.18.0.3:59686: rpc error: code = Canceled desc = context canceled -[012 12-19 08:05:58.67 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.18.0.3:59688: rpc error: code = Canceled desc = context canceled -[013 12-19 08:05:58.85 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.18.0.3:59690: rpc error: code = Canceled desc = context canceled -[014 12-19 08:05:59.20 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.18.0.3:59692: rpc error: code = Canceled desc = context canceled -[015 12-19 08:05:59.45 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.18.0.3:59694: rpc error: code = Canceled desc = context canceled -[016 12-19 08:05:59.71 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.18.0.3:59696: rpc error: code = Canceled desc = context canceled -[017 12-19 08:05:59.93 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.18.0.3:59698: rpc error: code = Canceled desc = context canceled -[018 12-19 08:06:00.24 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.18.0.3:59700: rpc error: code = Canceled desc = context canceled -[019 12-19 08:06:00.47 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.18.0.3:59702: rpc error: code = Canceled desc = context canceled -[01a 12-19 08:06:00.70 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.18.0.3:59704: rpc error: code = Canceled desc = context canceled -[01b 12-19 08:06:00.91 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.18.0.3:59706: rpc error: code = Canceled desc = context canceled -[01c 12-19 08:06:01.23 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.18.0.3:59708: rpc error: code = Canceled desc = context canceled -[01d 12-19 08:06:09.79 UTC] [%{longpkg}] %{callpath} -> WARN De-duplicating identity 0a074f7267314d535012aa062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434b6a4343416447674177494241674952414e7a345049457a56423178717639624f744f614e2b3877436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5467784d6a45354d4463314f5441775768634e4d6a67784d6a45324d4463314f5441770a576a42734d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45504d4130474131554543784d47593278705a5735304d523877485159445651514444425a425a473170626b42760a636d63784c6d56345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a497a6a30444151634451674145335a79366a6a45590a4c69343562504b56416f5968506b64755567756930454c593943414d5a6b436464472f6f446a6e66584e5767614b526e7772365353653972773656356d534f730a4e4c4d37624c78744542612b634b4e4e4d45737744675944565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759440a5652306a42435177496f4167645848684e786650744f7a3835506c4832594972673639474a43565551777178344e557776796e6749503877436759494b6f5a490a7a6a30454177494452774177524149674b565078706c7162543842454a4475666f38483635367564584d2f53473048464c436e334c526b515341554349456e6f0a453356544f79725241425970626e3033384633644c58514d692f344e5a2f50317a49552b6d4b57560a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a at index 2 in signature set -[01e 12-19 08:06:09.79 UTC] [%{longpkg}] %{callpath} -> WARN De-duplicating identity 0a074f7267314d535012aa062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434b6a4343416447674177494241674952414e7a345049457a56423178717639624f744f614e2b3877436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5467784d6a45354d4463314f5441775768634e4d6a67784d6a45324d4463314f5441770a576a42734d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45504d4130474131554543784d47593278705a5735304d523877485159445651514444425a425a473170626b42760a636d63784c6d56345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a497a6a30444151634451674145335a79366a6a45590a4c69343562504b56416f5968506b64755567756930454c593943414d5a6b436464472f6f446a6e66584e5767614b526e7772365353653972773656356d534f730a4e4c4d37624c78744542612b634b4e4e4d45737744675944565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759440a5652306a42435177496f4167645848684e786650744f7a3835506c4832594972673639474a43565551777178344e557776796e6749503877436759494b6f5a490a7a6a30454177494452774177524149674b565078706c7162543842454a4475666f38483635367564584d2f53473048464c436e334c526b515341554349456e6f0a453356544f79725241425970626e3033384633644c58514d692f344e5a2f50317a49552b6d4b57560a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a at index 2 in signature set -[01f 12-19 08:06:09.81 UTC] [%{longpkg}] %{callpath} -> WARN De-duplicating identity 0a074f7267314d535012aa062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434b6a4343416447674177494241674952414e7a345049457a56423178717639624f744f614e2b3877436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5467784d6a45354d4463314f5441775768634e4d6a67784d6a45324d4463314f5441770a576a42734d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45504d4130474131554543784d47593278705a5735304d523877485159445651514444425a425a473170626b42760a636d63784c6d56345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a497a6a30444151634451674145335a79366a6a45590a4c69343562504b56416f5968506b64755567756930454c593943414d5a6b436464472f6f446a6e66584e5767614b526e7772365353653972773656356d534f730a4e4c4d37624c78744542612b634b4e4e4d45737744675944565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759440a5652306a42435177496f4167645848684e786650744f7a3835506c4832594972673639474a43565551777178344e557776796e6749503877436759494b6f5a490a7a6a30454177494452774177524149674b565078706c7162543842454a4475666f38483635367564584d2f53473048464c436e334c526b515341554349456e6f0a453356544f79725241425970626e3033384633644c58514d692f344e5a2f50317a49552b6d4b57560a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a at index 2 in signature set -[020 12-19 08:06:09.81 UTC] [%{longpkg}] %{callpath} -> WARN De-duplicating identity 0a074f7267314d535012aa062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434b6a4343416447674177494241674952414e7a345049457a56423178717639624f744f614e2b3877436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5467784d6a45354d4463314f5441775768634e4d6a67784d6a45324d4463314f5441770a576a42734d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45504d4130474131554543784d47593278705a5735304d523877485159445651514444425a425a473170626b42760a636d63784c6d56345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a497a6a30444151634451674145335a79366a6a45590a4c69343562504b56416f5968506b64755567756930454c593943414d5a6b436464472f6f446a6e66584e5767614b526e7772365353653972773656356d534f730a4e4c4d37624c78744542612b634b4e4e4d45737744675944565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759440a5652306a42435177496f4167645848684e786650744f7a3835506c4832594972673639474a43565551777178344e557776796e6749503877436759494b6f5a490a7a6a30454177494452774177524149674b565078706c7162543842454a4475666f38483635367564584d2f53473048464c436e334c526b515341554349456e6f0a453356544f79725241425970626e3033384633644c58514d692f344e5a2f50317a49552b6d4b57560a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a at index 2 in signature set -[021 12-19 08:06:09.81 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.18.0.3:59712: rpc error: code = Canceled desc = context canceled -[022 12-19 08:06:09.82 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.18.0.3:59710: rpc error: code = Canceled desc = context canceled -[023 12-19 08:06:12.02 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.18.0.3:59734: rpc error: code = Canceled desc = context canceled -[024 12-19 08:06:12.18 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.18.0.3:59736: rpc error: code = Canceled desc = context canceled -[025 12-19 08:06:12.71 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.18.0.3:59740: rpc error: code = Canceled desc = context canceled -[026 12-19 08:06:13.01 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.18.0.3:59742: rpc error: code = Canceled desc = context canceled -[027 12-19 08:06:13.18 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.18.0.3:59744: rpc error: code = Canceled desc = context canceled -[028 12-19 08:06:13.40 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.18.0.3:59746: rpc error: code = Canceled desc = context canceled -[029 12-19 08:06:13.64 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.18.0.3:59748: rpc error: code = Canceled desc = context canceled -[02a 12-19 08:06:13.85 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.18.0.3:59750: rpc error: code = Canceled desc = context canceled -[02b 12-19 08:06:14.10 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.18.0.3:59752: rpc error: code = Canceled desc = context canceled -[02c 12-19 08:06:14.32 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.18.0.3:59754: rpc error: code = Canceled desc = context canceled -[02d 12-19 08:06:14.54 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.18.0.3:59756: rpc error: code = Canceled desc = context canceled -[02e 12-19 08:06:14.76 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.18.0.3:59758: rpc error: code = Canceled desc = context canceled -[02f 12-19 08:06:14.97 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.18.0.3:59760: rpc error: code = Canceled desc = context canceled -[030 12-19 08:06:15.14 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.18.0.3:59762: rpc error: code = Canceled desc = context canceled -[031 12-19 08:06:15.35 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.18.0.3:59764: rpc error: code = Canceled desc = context canceled +[007 01-09 07:44:03.06 UTC] [%{longpkg}] %{callpath} -> INFO Beginning to serve requests +[008 01-09 07:44:10.95 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T07:44:10.886Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Broadcast", "grpc.peer_address": "172.24.0.7:39098", "grpc.code": "OK", "grpc.call_duration": "70.6496ms"} +[009 01-09 07:44:10.96 UTC] [%{longpkg}] %{callpath} -> INFO Getting block information from block storage +[00a 01-09 07:44:11.13 UTC] [%{longpkg}] %{callpath} -> INFO Created and starting new chain businesschannel +[00b 01-09 07:44:11.14 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T07:44:10.869Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.24.0.7:39096", "grpc.code": "OK", "grpc.call_duration": "270.7479ms"} +[00c 01-09 07:44:15.99 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.24.0.7:39124: rpc error: code = Canceled desc = context canceled +[00d 01-09 07:44:15.99 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T07:44:15.935Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.24.0.7:39124", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "60.6194ms"} +[00e 01-09 07:44:15.99 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.24.0.7:39126: rpc error: code = Canceled desc = context canceled +[00f 01-09 07:44:15.99 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T07:44:15.95Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Broadcast", "grpc.peer_address": "172.24.0.7:39126", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "47.1097ms"} +[010 01-09 07:44:18.29 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.24.0.7:39138: rpc error: code = Canceled desc = context canceled +[011 01-09 07:44:18.29 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T07:44:18.191Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.24.0.7:39138", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "102.0702ms"} +[012 01-09 07:44:18.29 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.24.0.7:39140: rpc error: code = Canceled desc = context canceled +[013 01-09 07:44:18.30 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T07:44:18.203Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Broadcast", "grpc.peer_address": "172.24.0.7:39140", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "96.6034ms"} +[014 01-09 07:45:07.89 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.24.0.7:39198: rpc error: code = Canceled desc = context canceled +[015 01-09 07:45:07.90 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T07:44:25.191Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Broadcast", "grpc.peer_address": "172.24.0.7:39198", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "42.7432064s"} +[016 01-09 07:45:55.50 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.24.0.7:39278: rpc error: code = Canceled desc = context canceled +[017 01-09 07:45:55.50 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T07:45:55.258Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Broadcast", "grpc.peer_address": "172.24.0.7:39278", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "250.1132ms"} +[018 01-09 07:45:58.23 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.24.0.7:39294: rpc error: code = Canceled desc = context canceled +[019 01-09 07:45:58.23 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T07:45:58.185Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Broadcast", "grpc.peer_address": "172.24.0.7:39294", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "50.2328ms"} +[01a 01-09 07:46:04.59 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.24.0.7:39350: rpc error: code = Canceled desc = context canceled +[01b 01-09 07:46:04.59 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T07:46:04.586Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.24.0.7:39350", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "7.2651ms"} +[01c 01-09 07:46:04.84 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.24.0.7:39352: rpc error: code = Canceled desc = context canceled +[01d 01-09 07:46:04.84 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T07:46:04.827Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.24.0.7:39352", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "12.971ms"} +[01e 01-09 07:46:05.00 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.24.0.7:39354: rpc error: code = Canceled desc = context canceled +[01f 01-09 07:46:05.00 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T07:46:04.992Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.24.0.7:39354", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "14.9028ms"} +[020 01-09 07:46:05.20 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.24.0.7:39356: rpc error: code = Canceled desc = context canceled +[021 01-09 07:46:05.20 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T07:46:05.189Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.24.0.7:39356", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "14.1919ms"} +[022 01-09 07:46:05.41 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.24.0.7:39358: rpc error: code = Canceled desc = context canceled +[023 01-09 07:46:05.41 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T07:46:05.403Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.24.0.7:39358", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "13.7488ms"} +[024 01-09 07:46:05.70 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.24.0.7:39360: rpc error: code = Canceled desc = context canceled +[025 01-09 07:46:05.70 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T07:46:05.679Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.24.0.7:39360", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "22.3594ms"} +[026 01-09 07:46:05.97 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.24.0.7:39362: rpc error: code = Canceled desc = context canceled +[027 01-09 07:46:05.97 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T07:46:05.928Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.24.0.7:39362", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "45.5106ms"} +[028 01-09 07:46:06.22 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.24.0.7:39364: rpc error: code = Canceled desc = context canceled +[029 01-09 07:46:06.22 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T07:46:06.21Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.24.0.7:39364", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "10.4762ms"} +[02a 01-09 07:46:06.45 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.24.0.7:39366: rpc error: code = Canceled desc = context canceled +[02b 01-09 07:46:06.45 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T07:46:06.451Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.24.0.7:39366", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "7.4341ms"} +[02c 01-09 07:46:06.67 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.24.0.7:39368: rpc error: code = Canceled desc = context canceled +[02d 01-09 07:46:06.67 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T07:46:06.662Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.24.0.7:39368", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "13.3884ms"} +[02e 01-09 07:46:06.94 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.24.0.7:39370: rpc error: code = Canceled desc = context canceled +[02f 01-09 07:46:06.94 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T07:46:06.929Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.24.0.7:39370", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "12.4469ms"} +[030 01-09 07:46:07.21 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.24.0.7:39372: rpc error: code = Canceled desc = context canceled +[031 01-09 07:46:07.21 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T07:46:07.205Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.24.0.7:39372", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "9.9044ms"} +[032 01-09 07:46:14.55 UTC] [%{longpkg}] %{callpath} -> WARN De-duplicating identity [Org1MSP4a990d9ddc475ae0c719a406e0fbf388bcf3fe81bfd34a9c11f3a18eb4a4ed23] at index 2 in signature set +[033 01-09 07:46:14.56 UTC] [%{longpkg}] %{callpath} -> WARN De-duplicating identity [Org1MSP4a990d9ddc475ae0c719a406e0fbf388bcf3fe81bfd34a9c11f3a18eb4a4ed23] at index 2 in signature set +[034 01-09 07:46:14.58 UTC] [%{longpkg}] %{callpath} -> WARN De-duplicating identity [Org1MSP4a990d9ddc475ae0c719a406e0fbf388bcf3fe81bfd34a9c11f3a18eb4a4ed23] at index 2 in signature set +[035 01-09 07:46:14.58 UTC] [%{longpkg}] %{callpath} -> WARN De-duplicating identity [Org1MSP4a990d9ddc475ae0c719a406e0fbf388bcf3fe81bfd34a9c11f3a18eb4a4ed23] at index 2 in signature set +[036 01-09 07:46:14.59 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.24.0.7:39378: rpc error: code = Canceled desc = context canceled +[037 01-09 07:46:14.60 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T07:46:14.546Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.24.0.7:39378", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "53.7333ms"} +[038 01-09 07:46:14.60 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.24.0.7:39380: rpc error: code = Canceled desc = context canceled +[039 01-09 07:46:14.60 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T07:46:14.557Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Broadcast", "grpc.peer_address": "172.24.0.7:39380", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "43.7004ms"} +[03a 01-09 07:46:17.02 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.24.0.7:39422: rpc error: code = Canceled desc = context canceled +[03b 01-09 07:46:17.02 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T07:46:17.005Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.24.0.7:39422", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "16.4789ms"} +[03c 01-09 07:46:17.26 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.24.0.7:39424: rpc error: code = Canceled desc = context canceled +[03d 01-09 07:46:17.26 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T07:46:17.24Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.24.0.7:39424", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "20.3809ms"} +[03e 01-09 07:46:18.35 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.24.0.7:39426: rpc error: code = Canceled desc = context canceled +[03f 01-09 07:46:18.35 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T07:46:18.334Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.24.0.7:39426", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "17.9631ms"} +[040 01-09 07:46:18.81 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.24.0.7:39428: rpc error: code = Canceled desc = context canceled +[041 01-09 07:46:18.81 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T07:46:18.753Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.24.0.7:39428", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "59.6872ms"} +[042 01-09 07:46:19.00 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.24.0.7:39430: rpc error: code = Canceled desc = context canceled +[043 01-09 07:46:19.00 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T07:46:18.992Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.24.0.7:39430", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "9.5318ms"} +[044 01-09 07:46:19.47 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.24.0.7:39432: rpc error: code = Canceled desc = context canceled +[045 01-09 07:46:19.47 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T07:46:19.458Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.24.0.7:39432", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "15.0921ms"} +[046 01-09 07:46:19.95 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.24.0.7:39434: rpc error: code = Canceled desc = context canceled +[047 01-09 07:46:19.95 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T07:46:19.923Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.24.0.7:39434", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "30.292ms"} +[048 01-09 07:46:20.62 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.24.0.7:39436: rpc error: code = Canceled desc = context canceled +[049 01-09 07:46:20.62 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T07:46:20.56Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.24.0.7:39436", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "65.7681ms"} +[04a 01-09 07:46:21.09 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.24.0.7:39438: rpc error: code = Canceled desc = context canceled +[04b 01-09 07:46:21.09 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T07:46:21.084Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.24.0.7:39438", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "11.0362ms"} +[04c 01-09 07:46:21.33 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.24.0.7:39440: rpc error: code = Canceled desc = context canceled +[04d 01-09 07:46:21.33 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T07:46:21.319Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.24.0.7:39440", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "12.0573ms"} +[04e 01-09 07:46:21.57 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.24.0.7:39442: rpc error: code = Canceled desc = context canceled +[04f 01-09 07:46:21.57 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T07:46:21.553Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.24.0.7:39442", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "19.59ms"} +[050 01-09 07:46:21.87 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.24.0.7:39444: rpc error: code = Canceled desc = context canceled +[051 01-09 07:46:21.87 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T07:46:21.87Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.24.0.7:39444", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "8.3057ms"} +[052 01-09 07:46:22.07 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.24.0.7:39446: rpc error: code = Canceled desc = context canceled +[053 01-09 07:46:22.07 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T07:46:22.049Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.24.0.7:39446", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "24.7464ms"} +[054 01-09 07:46:22.23 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.24.0.7:39448: rpc error: code = Canceled desc = context canceled +[055 01-09 07:46:22.23 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T07:46:22.227Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.24.0.7:39448", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "10.3204ms"} +[056 01-09 07:46:22.54 UTC] [%{longpkg}] %{callpath} -> WARN Error reading from 172.24.0.7:39450: rpc error: code = Canceled desc = context canceled +[057 01-09 07:46:22.54 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T07:46:22.49Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.24.0.7:39450", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "51.0276ms"} diff --git a/hyperledger_fabric/latest/solo/logs/dev_peer0.log b/hyperledger_fabric/latest/solo/logs/dev_peer0.log index 8a80d7ea..62d80b0b 100644 --- a/hyperledger_fabric/latest/solo/logs/dev_peer0.log +++ b/hyperledger_fabric/latest/solo/logs/dev_peer0.log @@ -1,131 +1,185 @@ -[001 12-19 08:04:04.60 UTC] [%{longpkg}] %{callpath} -> INFO Starting peer: +[001 01-09 07:44:07.01 UTC] [%{longpkg}] %{callpath} -> INFO Starting peer: Version: 1.4.0 Commit SHA: development build - Go version: go1.10.4 + Go version: go1.11.4 OS/Arch: linux/amd64 Chaincode: - Base Image Version: 0.4.13 Base Docker Namespace: hyperledger Base Docker Label: org.hyperledger.fabric Docker Namespace: hyperledger -[002 12-19 08:04:04.60 UTC] [%{longpkg}] %{callpath} -> INFO Initializing ledger mgmt -[003 12-19 08:04:04.60 UTC] [%{longpkg}] %{callpath} -> INFO Initializing ledger provider -[004 12-19 08:04:04.92 UTC] [%{longpkg}] %{callpath} -> INFO ledger provider Initialized -[005 12-19 08:04:04.95 UTC] [%{longpkg}] %{callpath} -> INFO ledger mgmt initialized -[006 12-19 08:04:04.95 UTC] [%{longpkg}] %{callpath} -> INFO Auto-detected peer address: 172.18.0.6:7051 -[007 12-19 08:04:04.95 UTC] [%{longpkg}] %{callpath} -> INFO Returning peer0.org1.example.com:7051 -[008 12-19 08:04:04.95 UTC] [%{longpkg}] %{callpath} -> INFO Auto-detected peer address: 172.18.0.6:7051 -[009 12-19 08:04:04.95 UTC] [%{longpkg}] %{callpath} -> INFO Returning peer0.org1.example.com:7051 -[00a 12-19 08:04:04.97 UTC] [%{longpkg}] %{callpath} -> INFO Starting peer with TLS enabled -[00b 12-19 08:04:04.98 UTC] [%{longpkg}] %{callpath} -> INFO Entering computeChaincodeEndpoint with peerHostname: peer0.org1.example.com -[00c 12-19 08:04:04.98 UTC] [%{longpkg}] %{callpath} -> INFO Exit with ccEndpoint: peer0.org1.example.com:7052 -[00d 12-19 08:04:04.99 UTC] [%{longpkg}] %{callpath} -> INFO system chaincode lscc(github.com/hyperledger/fabric/core/scc/lscc) registered -[00e 12-19 08:04:05.00 UTC] [%{longpkg}] %{callpath} -> INFO system chaincode cscc(github.com/hyperledger/fabric/core/scc/cscc) registered -[00f 12-19 08:04:05.00 UTC] [%{longpkg}] %{callpath} -> INFO system chaincode qscc(github.com/hyperledger/fabric/core/scc/qscc) registered -[010 12-19 08:04:05.00 UTC] [%{longpkg}] %{callpath} -> INFO system chaincode +lifecycle(github.com/hyperledger/fabric/core/chaincode/lifecycle) registered -[011 12-19 08:04:05.01 UTC] [%{longpkg}] %{callpath} -> INFO Initialize gossip with endpoint peer0.org1.example.com:7051 and bootstrap set [127.0.0.1:7051] -[012 12-19 08:04:05.02 UTC] [%{longpkg}] %{callpath} -> INFO Creating gossip service with self membership of {peer0.org1.example.com:7051 [] [9 159 19 203 226 219 13 6 93 161 254 206 255 179 131 59 221 163 227 236 120 147 164 10 55 182 11 208 181 66 69 217] peer0.org1.example.com:7051 } -[013 12-19 08:04:05.02 UTC] [%{longpkg}] %{callpath} -> INFO Gossip instance peer0.org1.example.com:7051 started -[014 12-19 08:04:05.02 UTC] [%{longpkg}] %{callpath} -> INFO system chaincode lscc/(github.com/hyperledger/fabric/core/scc/lscc) deployed -[015 12-19 08:04:05.02 UTC] [%{longpkg}] %{callpath} -> INFO Init CSCC -[016 12-19 08:04:05.02 UTC] [%{longpkg}] %{callpath} -> INFO system chaincode cscc/(github.com/hyperledger/fabric/core/scc/cscc) deployed -[017 12-19 08:04:05.02 UTC] [%{longpkg}] %{callpath} -> INFO Init QSCC -[018 12-19 08:04:05.02 UTC] [%{longpkg}] %{callpath} -> INFO system chaincode qscc/(github.com/hyperledger/fabric/core/scc/qscc) deployed -[019 12-19 08:04:05.03 UTC] [%{longpkg}] %{callpath} -> INFO system chaincode +lifecycle/(github.com/hyperledger/fabric/core/chaincode/lifecycle) deployed -[01a 12-19 08:04:05.03 UTC] [%{longpkg}] %{callpath} -> INFO Deployed system chaincodes -[01b 12-19 08:04:05.03 UTC] [%{longpkg}] %{callpath} -> INFO Created with config TLS: true, authCacheMaxSize: 1000, authCachePurgeRatio: 0.750000 -[01c 12-19 08:04:05.03 UTC] [%{longpkg}] %{callpath} -> INFO Discovery service activated -[01d 12-19 08:04:05.03 UTC] [%{longpkg}] %{callpath} -> INFO Starting peer with ID=[name:"peer0.org1.example.com" ], network ID=[dev], address=[peer0.org1.example.com:7051] -[01e 12-19 08:04:05.03 UTC] [%{longpkg}] %{callpath} -> INFO Started peer with ID=[name:"peer0.org1.example.com" ], network ID=[dev], address=[peer0.org1.example.com:7051] -[01f 12-19 08:04:08.41 UTC] [%{longpkg}] %{callpath} -> INFO [][c741eb2b] Entry chaincode: name:"cscc" -[020 12-19 08:04:08.41 UTC] [%{longpkg}] %{callpath} -> INFO Creating ledger [businesschannel] with genesis block -[021 12-19 08:04:08.42 UTC] [%{longpkg}] %{callpath} -> INFO Getting block information from block storage -[022 12-19 08:04:08.44 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Committed block [0] with 1 transaction(s) in 15ms (state_validation=1ms block_commit=8ms state_commit=4ms) -[023 12-19 08:04:08.44 UTC] [%{longpkg}] %{callpath} -> INFO Created ledger [businesschannel] with genesis block -[024 12-19 08:04:08.45 UTC] [%{longpkg}] %{callpath} -> INFO Joining gossip network of channel businesschannel with 2 organizations -[025 12-19 08:04:08.45 UTC] [%{longpkg}] %{callpath} -> INFO No configured anchor peers of Org2MSP for channel businesschannel to learn about -[026 12-19 08:04:08.45 UTC] [%{longpkg}] %{callpath} -> INFO No configured anchor peers of Org1MSP for channel businesschannel to learn about -[027 12-19 08:04:08.48 UTC] [%{longpkg}] %{callpath} -> INFO Updating metadata information, current ledger sequence is at = 0, next expected block is = 1 -[028 12-19 08:04:08.48 UTC] [%{longpkg}] %{callpath} -> INFO system chaincode lscc/businesschannel(github.com/hyperledger/fabric/core/scc/lscc) deployed -[029 12-19 08:04:08.48 UTC] [%{longpkg}] %{callpath} -> INFO Init CSCC -[02a 12-19 08:04:08.48 UTC] [%{longpkg}] %{callpath} -> INFO system chaincode cscc/businesschannel(github.com/hyperledger/fabric/core/scc/cscc) deployed -[02b 12-19 08:04:08.48 UTC] [%{longpkg}] %{callpath} -> INFO Init QSCC -[02c 12-19 08:04:08.48 UTC] [%{longpkg}] %{callpath} -> INFO system chaincode qscc/businesschannel(github.com/hyperledger/fabric/core/scc/qscc) deployed -[02d 12-19 08:04:08.48 UTC] [%{longpkg}] %{callpath} -> INFO system chaincode +lifecycle/businesschannel(github.com/hyperledger/fabric/core/chaincode/lifecycle) deployed -[02e 12-19 08:04:08.48 UTC] [%{longpkg}] %{callpath} -> INFO [][c741eb2b] Exit chaincode: name:"cscc" (75ms) -[02f 12-19 08:04:09.71 UTC] [%{longpkg}] %{callpath} -> INFO [][f340e4a8] Entry chaincode: name:"cscc" -[030 12-19 08:04:09.71 UTC] [%{longpkg}] %{callpath} -> INFO [][f340e4a8] Exit chaincode: name:"cscc" (1ms) -[031 12-19 08:04:10.70 UTC] [%{longpkg}] %{callpath} -> INFO [][3bbd1024] Entry chaincode: name:"qscc" -[032 12-19 08:04:10.70 UTC] [%{longpkg}] %{callpath} -> INFO [][3bbd1024] Exit chaincode: name:"qscc" (1ms) -[033 12-19 08:04:14.48 UTC] [%{longpkg}] %{callpath} -> INFO [9 159 19 203 226 219 13 6 93 161 254 206 255 179 131 59 221 163 227 236 120 147 164 10 55 182 11 208 181 66 69 217] : Becoming a leader -[034 12-19 08:04:14.48 UTC] [%{longpkg}] %{callpath} -> INFO Elected as a leader, starting delivery service for channel businesschannel -[035 12-19 08:04:14.49 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Received block [1] from buffer -[036 12-19 08:04:14.51 UTC] [%{longpkg}] %{callpath} -> INFO Joining gossip network of channel businesschannel with 2 organizations -[037 12-19 08:04:14.51 UTC] [%{longpkg}] %{callpath} -> INFO Learning about the configured anchor peers of Org1MSP for channel businesschannel : [{peer0.org1.example.com 7051}] -[038 12-19 08:04:14.51 UTC] [%{longpkg}] %{callpath} -> INFO Anchor peer with same endpoint, skipping connecting to myself -[039 12-19 08:04:14.51 UTC] [%{longpkg}] %{callpath} -> INFO No configured anchor peers of Org2MSP for channel businesschannel to learn about -[03a 12-19 08:04:14.53 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Validated block [1] in 38ms -[03b 12-19 08:04:14.56 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Committed block [1] with 1 transaction(s) in 25ms (state_validation=1ms block_commit=15ms state_commit=7ms) -[03c 12-19 08:04:14.56 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Received block [2] from buffer -[03d 12-19 08:04:14.57 UTC] [%{longpkg}] %{callpath} -> INFO Joining gossip network of channel businesschannel with 2 organizations -[03e 12-19 08:04:14.57 UTC] [%{longpkg}] %{callpath} -> INFO Learning about the configured anchor peers of Org2MSP for channel businesschannel : [{peer0.org2.example.com 7051}] -[03f 12-19 08:04:14.57 UTC] [%{longpkg}] %{callpath} -> INFO Learning about the configured anchor peers of Org1MSP for channel businesschannel : [{peer0.org1.example.com 7051}] -[040 12-19 08:04:14.57 UTC] [%{longpkg}] %{callpath} -> INFO Anchor peer with same endpoint, skipping connecting to myself -[041 12-19 08:04:14.58 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Validated block [2] in 25ms -[042 12-19 08:04:14.61 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Committed block [2] with 1 transaction(s) in 25ms (state_validation=1ms block_commit=18ms state_commit=2ms) -[043 12-19 08:04:18.79 UTC] [%{longpkg}] %{callpath} -> INFO [][d43c8044] Entry chaincode: name:"lscc" -[044 12-19 08:04:18.80 UTC] [%{longpkg}] %{callpath} -> INFO Installed Chaincode [exp02] Version [1.0] to peer -[045 12-19 08:04:18.80 UTC] [%{longpkg}] %{callpath} -> INFO [][d43c8044] Exit chaincode: name:"lscc" (2ms) -[046 12-19 08:04:21.64 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][28929422] Entry chaincode: name:"lscc" -[047 12-19 08:04:21.66 UTC] [%{longpkg}] %{callpath} -> INFO building chaincode with ldflagsOpt: '-ldflags "-linkmode external -extldflags '-static'"' -[048 12-19 08:05:02.74 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][28929422] Exit chaincode: name:"lscc" (41173ms) -[049 12-19 08:05:04.75 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Received block [3] from buffer -[04a 12-19 08:05:04.76 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Validated block [3] in 4ms -[04b 12-19 08:05:04.76 UTC] [%{longpkg}] %{callpath} -> INFO Channel [businesschannel]: Handling LSCC state update for chaincode [exp02] -[04c 12-19 08:05:04.78 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Committed block [3] with 1 transaction(s) in 21ms (state_validation=0ms block_commit=14ms state_commit=3ms) -[04d 12-19 08:05:46.53 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][cec69b4f] Entry chaincode: name:"exp02" -[04e 12-19 08:05:46.54 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][cec69b4f] Exit chaincode: name:"exp02" (7ms) -[04f 12-19 08:05:48.55 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Received block [4] from buffer -[050 12-19 08:05:48.55 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Validated block [4] in 0ms -[051 12-19 08:05:48.60 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Committed block [4] with 1 transaction(s) in 43ms (state_validation=0ms block_commit=27ms state_commit=4ms) -[052 12-19 08:05:50.08 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][5fc2faf1] Entry chaincode: name:"exp02" -[053 12-19 08:05:50.09 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][5fc2faf1] Exit chaincode: name:"exp02" (2ms) -[054 12-19 08:05:51.86 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Received block [5] from buffer -[055 12-19 08:05:51.87 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Validated block [5] in 3ms -[056 12-19 08:05:51.93 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Committed block [5] with 1 transaction(s) in 55ms (state_validation=0ms block_commit=48ms state_commit=4ms) -[057 12-19 08:05:52.35 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][f1ea94bb] Entry chaincode: name:"exp02" -[058 12-19 08:05:52.36 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][f1ea94bb] Exit chaincode: name:"exp02" (12ms) -[059 12-19 08:05:53.24 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][b803f511] Entry chaincode: name:"lscc" -[05a 12-19 08:05:53.24 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][b803f511] Exit chaincode: name:"lscc" (2ms) -[05b 12-19 08:05:53.56 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][9a734770] Entry chaincode: name:"lscc" -[05c 12-19 08:05:53.56 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][9a734770] Exit chaincode: name:"lscc" (1ms) -[05d 12-19 08:05:53.97 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][977f4423] Entry chaincode: name:"lscc" -[05e 12-19 08:05:53.97 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][977f4423] Exit chaincode: name:"lscc" (1ms) -[05f 12-19 08:05:54.30 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][d5e86d42] Entry chaincode: name:"lscc" -[060 12-19 08:05:54.30 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][d5e86d42] Exit chaincode: name:"lscc" (1ms) -[061 12-19 08:05:54.61 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][bc113975] Entry chaincode: name:"lscc" -[062 12-19 08:05:54.61 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][bc113975] Exit chaincode: name:"lscc" (1ms) -[063 12-19 08:05:55.30 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][5a22e70a] Entry chaincode: name:"qscc" -[064 12-19 08:05:55.30 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][5a22e70a] Exit chaincode: name:"qscc" (1ms) -[065 12-19 08:05:55.85 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][d61eed8d] Entry chaincode: name:"qscc" -[066 12-19 08:05:55.85 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][d61eed8d] Exit chaincode: name:"qscc" (1ms) -[067 12-19 08:05:56.71 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][98f2376d] Entry chaincode: name:"cscc" -[068 12-19 08:05:56.71 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][98f2376d] Exit chaincode: name:"cscc" (1ms) -[069 12-19 08:05:57.32 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][4e0930c5] Entry chaincode: name:"cscc" -[06a 12-19 08:05:57.32 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][4e0930c5] Exit chaincode: name:"cscc" (1ms) -[06b 12-19 08:05:57.71 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][f01ce710] Entry chaincode: name:"cscc" -[06c 12-19 08:05:57.71 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][f01ce710] Exit chaincode: name:"cscc" (1ms) -[06d 12-19 08:06:09.87 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Received block [6] from buffer -[06e 12-19 08:06:09.88 UTC] [%{longpkg}] %{callpath} -> WARN De-duplicating identity 0a074f7267314d535012aa062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434b6a4343416447674177494241674952414e7a345049457a56423178717639624f744f614e2b3877436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5467784d6a45354d4463314f5441775768634e4d6a67784d6a45324d4463314f5441770a576a42734d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45504d4130474131554543784d47593278705a5735304d523877485159445651514444425a425a473170626b42760a636d63784c6d56345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a497a6a30444151634451674145335a79366a6a45590a4c69343562504b56416f5968506b64755567756930454c593943414d5a6b436464472f6f446a6e66584e5767614b526e7772365353653972773656356d534f730a4e4c4d37624c78744542612b634b4e4e4d45737744675944565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759440a5652306a42435177496f4167645848684e786650744f7a3835506c4832594972673639474a43565551777178344e557776796e6749503877436759494b6f5a490a7a6a30454177494452774177524149674b565078706c7162543842454a4475666f38483635367564584d2f53473048464c436e334c526b515341554349456e6f0a453356544f79725241425970626e3033384633644c58514d692f344e5a2f50317a49552b6d4b57560a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a at index 2 in signature set -[06f 12-19 08:06:09.88 UTC] [%{longpkg}] %{callpath} -> WARN De-duplicating identity 0a074f7267314d535012aa062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434b6a4343416447674177494241674952414e7a345049457a56423178717639624f744f614e2b3877436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5467784d6a45354d4463314f5441775768634e4d6a67784d6a45324d4463314f5441770a576a42734d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45504d4130474131554543784d47593278705a5735304d523877485159445651514444425a425a473170626b42760a636d63784c6d56345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a497a6a30444151634451674145335a79366a6a45590a4c69343562504b56416f5968506b64755567756930454c593943414d5a6b436464472f6f446a6e66584e5767614b526e7772365353653972773656356d534f730a4e4c4d37624c78744542612b634b4e4e4d45737744675944565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759440a5652306a42435177496f4167645848684e786650744f7a3835506c4832594972673639474a43565551777178344e557776796e6749503877436759494b6f5a490a7a6a30454177494452774177524149674b565078706c7162543842454a4475666f38483635367564584d2f53473048464c436e334c526b515341554349456e6f0a453356544f79725241425970626e3033384633644c58514d692f344e5a2f50317a49552b6d4b57560a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a at index 2 in signature set -[070 12-19 08:06:09.96 UTC] [%{longpkg}] %{callpath} -> INFO Joining gossip network of channel businesschannel with 3 organizations -[071 12-19 08:06:09.96 UTC] [%{longpkg}] %{callpath} -> INFO No configured anchor peers of Org3MSP for channel businesschannel to learn about -[072 12-19 08:06:09.96 UTC] [%{longpkg}] %{callpath} -> INFO Learning about the configured anchor peers of Org1MSP for channel businesschannel : [{peer0.org1.example.com 7051}] -[073 12-19 08:06:09.96 UTC] [%{longpkg}] %{callpath} -> INFO Anchor peer with same endpoint, skipping connecting to myself -[074 12-19 08:06:09.96 UTC] [%{longpkg}] %{callpath} -> INFO Learning about the configured anchor peers of Org2MSP for channel businesschannel : [{peer0.org2.example.com 7051}] -[075 12-19 08:06:10.01 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Validated block [6] in 137ms -[076 12-19 08:06:10.13 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Committed block [6] with 1 transaction(s) in 125ms (state_validation=0ms block_commit=88ms state_commit=26ms) -[077 12-19 08:06:24.87 UTC] [%{longpkg}] %{callpath} -> INFO [][a526aa94] Entry chaincode: name:"cscc" -[078 12-19 08:06:24.87 UTC] [%{longpkg}] %{callpath} -> INFO [][a526aa94] Exit chaincode: name:"cscc" (0ms) -[079 12-19 08:06:26.04 UTC] [%{longpkg}] %{callpath} -> INFO [][466c7876] Entry chaincode: name:"qscc" -[07a 12-19 08:06:26.04 UTC] [%{longpkg}] %{callpath} -> INFO [][466c7876] Exit chaincode: name:"qscc" (1ms) +[002 01-09 07:44:07.02 UTC] [%{longpkg}] %{callpath} -> INFO Initializing ledger mgmt +[003 01-09 07:44:07.02 UTC] [%{longpkg}] %{callpath} -> INFO Initializing ledger provider +[004 01-09 07:44:07.11 UTC] [%{longpkg}] %{callpath} -> INFO ledger provider Initialized +[005 01-09 07:44:07.15 UTC] [%{longpkg}] %{callpath} -> INFO ledger mgmt initialized +[006 01-09 07:44:07.15 UTC] [%{longpkg}] %{callpath} -> INFO Auto-detected peer address: 172.24.0.5:7051 +[007 01-09 07:44:07.15 UTC] [%{longpkg}] %{callpath} -> INFO Returning peer0.org1.example.com:7051 +[008 01-09 07:44:07.15 UTC] [%{longpkg}] %{callpath} -> INFO Auto-detected peer address: 172.24.0.5:7051 +[009 01-09 07:44:07.15 UTC] [%{longpkg}] %{callpath} -> INFO Returning peer0.org1.example.com:7051 +[00a 01-09 07:44:07.17 UTC] [%{longpkg}] %{callpath} -> INFO Starting peer with TLS enabled +[00b 01-09 07:44:07.18 UTC] [%{longpkg}] %{callpath} -> INFO Entering computeChaincodeEndpoint with peerHostname: peer0.org1.example.com +[00c 01-09 07:44:07.18 UTC] [%{longpkg}] %{callpath} -> INFO Exit with ccEndpoint: peer0.org1.example.com:7052 +[00d 01-09 07:44:07.20 UTC] [%{longpkg}] %{callpath} -> INFO system chaincode lscc(github.com/hyperledger/fabric/core/scc/lscc) registered +[00e 01-09 07:44:07.20 UTC] [%{longpkg}] %{callpath} -> INFO system chaincode cscc(github.com/hyperledger/fabric/core/scc/cscc) registered +[00f 01-09 07:44:07.20 UTC] [%{longpkg}] %{callpath} -> INFO system chaincode qscc(github.com/hyperledger/fabric/core/scc/qscc) registered +[010 01-09 07:44:07.20 UTC] [%{longpkg}] %{callpath} -> INFO system chaincode +lifecycle(github.com/hyperledger/fabric/core/chaincode/lifecycle) registered +[011 01-09 07:44:07.21 UTC] [%{longpkg}] %{callpath} -> INFO Initialize gossip with endpoint peer0.org1.example.com:7051 and bootstrap set [127.0.0.1:7051] +[012 01-09 07:44:07.22 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: 099f13cbe2db0d065da1feceffb3833bdda3e3ec7893a40a37b60bd0b54245d9, Metadata: +[013 01-09 07:44:07.22 UTC] [%{longpkg}] %{callpath} -> INFO Gossip instance peer0.org1.example.com:7051 started +[014 01-09 07:44:07.23 UTC] [%{longpkg}] %{callpath} -> INFO system chaincode lscc/(github.com/hyperledger/fabric/core/scc/lscc) deployed +[015 01-09 07:44:07.24 UTC] [%{longpkg}] %{callpath} -> INFO Init CSCC +[016 01-09 07:44:07.24 UTC] [%{longpkg}] %{callpath} -> INFO system chaincode cscc/(github.com/hyperledger/fabric/core/scc/cscc) deployed +[017 01-09 07:44:07.24 UTC] [%{longpkg}] %{callpath} -> INFO Init QSCC +[018 01-09 07:44:07.24 UTC] [%{longpkg}] %{callpath} -> INFO system chaincode qscc/(github.com/hyperledger/fabric/core/scc/qscc) deployed +[019 01-09 07:44:07.24 UTC] [%{longpkg}] %{callpath} -> INFO system chaincode +lifecycle/(github.com/hyperledger/fabric/core/chaincode/lifecycle) deployed +[01a 01-09 07:44:07.24 UTC] [%{longpkg}] %{callpath} -> INFO Deployed system chaincodes +[01b 01-09 07:44:07.24 UTC] [%{longpkg}] %{callpath} -> INFO Created with config TLS: true, authCacheMaxSize: 1000, authCachePurgeRatio: 0.750000 +[01c 01-09 07:44:07.24 UTC] [%{longpkg}] %{callpath} -> INFO Discovery service activated +[01d 01-09 07:44:07.24 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 07:44:07.24 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 07:44:07.79 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T07:44:07.798Z", "grpc.service": "gossip.Gossip", "grpc.method": "Ping", "grpc.request_deadline": "2019-01-09T07:44:09.798Z", "grpc.peer_address": "172.24.0.6:47286", "grpc.peer_subject": "CN=peer1.org1.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "234.2µs"} +[020 01-09 07:44:07.81 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T07:44:07.801Z", "grpc.service": "gossip.Gossip", "grpc.method": "GossipStream", "grpc.request_deadline": "2019-01-09T07:44:17.801Z", "grpc.peer_address": "172.24.0.6:47286", "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": "8.8676ms"} +[021 01-09 07:44:07.83 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T07:44:07.835Z", "grpc.service": "gossip.Gossip", "grpc.method": "Ping", "grpc.request_deadline": "2019-01-09T07:44:09.834Z", "grpc.peer_address": "172.24.0.6:47288", "grpc.peer_subject": "CN=peer1.org1.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "143.9µs"} +[022 01-09 07:44:11.76 UTC] [%{longpkg}] %{callpath} -> INFO [][1e38ec1b] Entry chaincode: name:"cscc" +[023 01-09 07:44:11.76 UTC] [%{longpkg}] %{callpath} -> INFO Creating ledger [businesschannel] with genesis block +[024 01-09 07:44:11.77 UTC] [%{longpkg}] %{callpath} -> INFO Getting block information from block storage +[025 01-09 07:44:11.79 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Committed block [0] with 1 transaction(s) in 20ms (state_validation=1ms block_commit=12ms state_commit=3ms) +[026 01-09 07:44:11.80 UTC] [%{longpkg}] %{callpath} -> INFO Created ledger [businesschannel] with genesis block +[027 01-09 07:44:11.82 UTC] [%{longpkg}] %{callpath} -> INFO Joining gossip network of channel businesschannel with 2 organizations +[028 01-09 07:44:11.83 UTC] [%{longpkg}] %{callpath} -> INFO No configured anchor peers of Org1MSP for channel businesschannel to learn about +[029 01-09 07:44:11.83 UTC] [%{longpkg}] %{callpath} -> INFO No configured anchor peers of Org2MSP for channel businesschannel to learn about +[02a 01-09 07:44:11.87 UTC] [%{longpkg}] %{callpath} -> INFO Updating metadata information, current ledger sequence is at = 0, next expected block is = 1 +[02b 01-09 07:44:11.87 UTC] [%{longpkg}] %{callpath} -> INFO system chaincode lscc/businesschannel(github.com/hyperledger/fabric/core/scc/lscc) deployed +[02c 01-09 07:44:11.87 UTC] [%{longpkg}] %{callpath} -> INFO Init CSCC +[02d 01-09 07:44:11.88 UTC] [%{longpkg}] %{callpath} -> INFO system chaincode cscc/businesschannel(github.com/hyperledger/fabric/core/scc/cscc) deployed +[02e 01-09 07:44:11.88 UTC] [%{longpkg}] %{callpath} -> INFO Init QSCC +[02f 01-09 07:44:11.88 UTC] [%{longpkg}] %{callpath} -> INFO system chaincode qscc/businesschannel(github.com/hyperledger/fabric/core/scc/qscc) deployed +[030 01-09 07:44:11.88 UTC] [%{longpkg}] %{callpath} -> INFO system chaincode +lifecycle/businesschannel(github.com/hyperledger/fabric/core/chaincode/lifecycle) deployed +[031 01-09 07:44:11.88 UTC] [%{longpkg}] %{callpath} -> INFO [][1e38ec1b] Exit chaincode: name:"cscc" (117ms) +[032 01-09 07:44:11.88 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T07:44:11.764Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.24.0.7:54838", "grpc.code": "OK", "grpc.call_duration": "119.5777ms"} +[033 01-09 07:44:13.68 UTC] [%{longpkg}] %{callpath} -> INFO [][f3e627fe] Entry chaincode: name:"cscc" +[034 01-09 07:44:13.68 UTC] [%{longpkg}] %{callpath} -> INFO [][f3e627fe] Exit chaincode: name:"cscc" (1ms) +[035 01-09 07:44:13.68 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T07:44:13.685Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.24.0.7:54846", "grpc.code": "OK", "grpc.call_duration": "3.4696ms"} +[036 01-09 07:44:14.76 UTC] [%{longpkg}] %{callpath} -> INFO [][e7a87509] Entry chaincode: name:"qscc" +[037 01-09 07:44:14.76 UTC] [%{longpkg}] %{callpath} -> INFO [][e7a87509] Exit chaincode: name:"qscc" (3ms) +[038 01-09 07:44:14.76 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T07:44:14.763Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.24.0.7:54854", "grpc.code": "OK", "grpc.call_duration": "5.1907ms"} +[039 01-09 07:44:16.82 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 07:44:17.88 UTC] [%{longpkg}] %{callpath} -> INFO 099f13cbe2db0d065da1feceffb3833bdda3e3ec7893a40a37b60bd0b54245d9 : Becoming a leader +[03b 01-09 07:44:17.88 UTC] [%{longpkg}] %{callpath} -> INFO Elected as a leader, starting delivery service for channel businesschannel +[03c 01-09 07:44:17.93 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Received block [1] from buffer +[03d 01-09 07:44:17.96 UTC] [%{longpkg}] %{callpath} -> INFO Joining gossip network of channel businesschannel with 2 organizations +[03e 01-09 07:44:17.96 UTC] [%{longpkg}] %{callpath} -> INFO No configured anchor peers of Org2MSP for channel businesschannel to learn about +[03f 01-09 07:44:17.96 UTC] [%{longpkg}] %{callpath} -> INFO Learning about the configured anchor peers of Org1MSP for channel businesschannel : [{peer0.org1.example.com 7051}] +[040 01-09 07:44:17.96 UTC] [%{longpkg}] %{callpath} -> INFO Anchor peer with same endpoint, skipping connecting to myself +[041 01-09 07:44:17.97 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Validated block [1] in 43ms +[042 01-09 07:44:17.98 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T07:44:17.987Z", "grpc.service": "gossip.Gossip", "grpc.method": "Ping", "grpc.request_deadline": "2019-01-09T07:44:19.987Z", "grpc.peer_address": "172.24.0.6:47332", "grpc.peer_subject": "CN=peer1.org1.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "615.2µs"} +[043 01-09 07:44:17.99 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Committed block [1] with 1 transaction(s) in 19ms (state_validation=1ms block_commit=11ms state_commit=3ms) +[044 01-09 07:44:18.00 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T07:44:07.838Z", "grpc.service": "gossip.Gossip", "grpc.method": "GossipStream", "grpc.peer_address": "172.24.0.6:47288", "grpc.peer_subject": "CN=peer1.org1.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "10.1629946s"} +[045 01-09 07:44:18.00 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T07:44:17.994Z", "grpc.service": "gossip.Gossip", "grpc.method": "GossipStream", "grpc.request_deadline": "2019-01-09T07:44:27.994Z", "grpc.peer_address": "172.24.0.6:47332", "grpc.peer_subject": "CN=peer1.org1.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "7.5798ms"} +[046 01-09 07:44:18.31 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Received block [2] from buffer +[047 01-09 07:44:18.37 UTC] [%{longpkg}] %{callpath} -> INFO Joining gossip network of channel businesschannel with 2 organizations +[048 01-09 07:44:18.37 UTC] [%{longpkg}] %{callpath} -> INFO Learning about the configured anchor peers of Org1MSP for channel businesschannel : [{peer0.org1.example.com 7051}] +[049 01-09 07:44:18.37 UTC] [%{longpkg}] %{callpath} -> INFO Anchor peer with same endpoint, skipping connecting to myself +[04a 01-09 07:44:18.37 UTC] [%{longpkg}] %{callpath} -> INFO Learning about the configured anchor peers of Org2MSP for channel businesschannel : [{peer0.org2.example.com 7051}] +[04b 01-09 07:44:18.46 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Validated block [2] in 140ms +[04c 01-09 07:44:18.49 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Committed block [2] with 1 transaction(s) in 36ms (state_validation=0ms block_commit=24ms state_commit=6ms) +[04d 01-09 07:44:18.51 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T07:44:18.515Z", "grpc.service": "gossip.Gossip", "grpc.method": "Ping", "grpc.request_deadline": "2019-01-09T07:44:20.514Z", "grpc.peer_address": "172.24.0.6:47346", "grpc.peer_subject": "CN=peer1.org1.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "329.1µs"} +[04e 01-09 07:44:18.55 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T07:44:18.521Z", "grpc.service": "gossip.Gossip", "grpc.method": "GossipStream", "grpc.request_deadline": "2019-01-09T07:44:28.52Z", "grpc.peer_address": "172.24.0.6:47346", "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": "30.6283ms"} +[04f 01-09 07:44:18.56 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T07:44:18.562Z", "grpc.service": "gossip.Gossip", "grpc.method": "Ping", "grpc.request_deadline": "2019-01-09T07:44:20.559Z", "grpc.peer_address": "172.24.0.6:47350", "grpc.peer_subject": "CN=peer1.org1.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "154.8µs"} +[050 01-09 07:44:18.61 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T07:44:18.615Z", "grpc.service": "gossip.Gossip", "grpc.method": "Ping", "grpc.request_deadline": "2019-01-09T07:44:20.614Z", "grpc.peer_address": "172.24.0.4:41530", "grpc.peer_subject": "CN=peer1.org2.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "262.4µs"} +[051 01-09 07:44:18.65 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T07:44:18.655Z", "grpc.service": "gossip.Gossip", "grpc.method": "Ping", "grpc.request_deadline": "2019-01-09T07:44:20.654Z", "grpc.peer_address": "172.24.0.3:48218", "grpc.peer_subject": "CN=peer0.org2.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "303.5µs"} +[052 01-09 07:44:18.67 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T07:44:18.62Z", "grpc.service": "gossip.Gossip", "grpc.method": "GossipStream", "grpc.request_deadline": "2019-01-09T07:44:28.62Z", "grpc.peer_address": "172.24.0.4:41530", "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": "51.1887ms"} +[053 01-09 07:44:18.69 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T07:44:18.697Z", "grpc.service": "gossip.Gossip", "grpc.method": "Ping", "grpc.request_deadline": "2019-01-09T07:44:20.696Z", "grpc.peer_address": "172.24.0.4:41534", "grpc.peer_subject": "CN=peer1.org2.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "245.9µs"} +[054 01-09 07:44:18.73 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T07:44:18.659Z", "grpc.service": "gossip.Gossip", "grpc.method": "GossipStream", "grpc.request_deadline": "2019-01-09T07:44:28.659Z", "grpc.peer_address": "172.24.0.3:48218", "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": "75.7002ms"} +[055 01-09 07:44:18.76 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T07:44:18.76Z", "grpc.service": "gossip.Gossip", "grpc.method": "Ping", "grpc.request_deadline": "2019-01-09T07:44:20.758Z", "grpc.peer_address": "172.24.0.4:41538", "grpc.peer_subject": "CN=peer1.org2.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "108.9µs"} +[056 01-09 07:44:18.77 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T07:44:18.707Z", "grpc.service": "gossip.Gossip", "grpc.method": "GossipStream", "grpc.peer_address": "172.24.0.4:41534", "grpc.peer_subject": "CN=peer1.org2.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "64.1179ms"} +[057 01-09 07:44:18.77 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T07:44:18.767Z", "grpc.service": "gossip.Gossip", "grpc.method": "GossipStream", "grpc.request_deadline": "2019-01-09T07:44:28.767Z", "grpc.peer_address": "172.24.0.4:41538", "grpc.peer_subject": "CN=peer1.org2.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "3.9574ms"} +[058 01-09 07:44:18.81 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T07:44:18.816Z", "grpc.service": "gossip.Gossip", "grpc.method": "Ping", "grpc.request_deadline": "2019-01-09T07:44:20.815Z", "grpc.peer_address": "172.24.0.3:48228", "grpc.peer_subject": "CN=peer0.org2.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "171.2µs"} +[059 01-09 07:44:18.82 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T07:44:18.821Z", "grpc.service": "gossip.Gossip", "grpc.method": "GossipStream", "grpc.request_deadline": "2019-01-09T07:44:28.82Z", "grpc.peer_address": "172.24.0.3:48228", "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": "8.0639ms"} +[05a 01-09 07:44:18.85 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T07:44:18.855Z", "grpc.service": "gossip.Gossip", "grpc.method": "Ping", "grpc.request_deadline": "2019-01-09T07:44:20.855Z", "grpc.peer_address": "172.24.0.3:48230", "grpc.peer_subject": "CN=peer0.org2.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "130.9µs"} +[05b 01-09 07:44:21.61 UTC] [%{longpkg}] %{callpath} -> INFO [][dbcceaf0] Entry chaincode: name:"lscc" +[05c 01-09 07:44:21.61 UTC] [%{longpkg}] %{callpath} -> INFO Installed Chaincode [exp02] Version [1.0] to peer +[05d 01-09 07:44:21.61 UTC] [%{longpkg}] %{callpath} -> INFO [][dbcceaf0] Exit chaincode: name:"lscc" (4ms) +[05e 01-09 07:44:21.61 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T07:44:21.609Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.24.0.7:54914", "grpc.code": "OK", "grpc.call_duration": "4.7839ms"} +[05f 01-09 07:44:21.79 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 ]] +[060 01-09 07:44:25.18 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][e1d9b757] Entry chaincode: name:"lscc" +[061 01-09 07:44:25.20 UTC] [%{longpkg}] %{callpath} -> INFO building chaincode with ldflagsOpt: '-ldflags "-linkmode external -extldflags '-static'"' +[062 01-09 07:45:07.89 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][e1d9b757] Exit chaincode: name:"lscc" (42738ms) +[063 01-09 07:45:07.89 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T07:44:25.184Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.24.0.7:54932", "grpc.code": "OK", "grpc.call_duration": "42.7408033s"} +[064 01-09 07:45:09.91 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Received block [3] from buffer +[065 01-09 07:45:09.91 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Validated block [3] in 5ms +[066 01-09 07:45:09.92 UTC] [%{longpkg}] %{callpath} -> INFO Channel [businesschannel]: Handling deploy or update of chaincode [exp02] +[067 01-09 07:45:09.95 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Committed block [3] with 1 transaction(s) in 30ms (state_validation=2ms block_commit=19ms state_commit=4ms) +[068 01-09 07:45:55.47 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][f5e8173c] Entry chaincode: name:"exp02" +[069 01-09 07:45:55.49 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][f5e8173c] Exit chaincode: name:"exp02" (13ms) +[06a 01-09 07:45:55.49 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T07:45:55.41Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.24.0.7:55012", "grpc.code": "OK", "grpc.call_duration": "81.8345ms"} +[06b 01-09 07:45:57.52 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Received block [4] from buffer +[06c 01-09 07:45:57.53 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Validated block [4] in 17ms +[06d 01-09 07:45:57.59 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Committed block [4] with 1 transaction(s) in 40ms (state_validation=2ms block_commit=21ms state_commit=14ms) +[06e 01-09 07:45:58.39 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][fc4503ea] Entry chaincode: name:"exp02" +[06f 01-09 07:45:58.39 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][fc4503ea] Exit chaincode: name:"exp02" (3ms) +[070 01-09 07:45:58.39 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T07:45:58.389Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.24.0.7:55034", "grpc.code": "OK", "grpc.call_duration": "6.0111ms"} +[071 01-09 07:46:00.24 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Received block [5] from buffer +[072 01-09 07:46:00.26 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Validated block [5] in 14ms +[073 01-09 07:46:00.30 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Committed block [5] with 1 transaction(s) in 35ms (state_validation=2ms block_commit=23ms state_commit=5ms) +[074 01-09 07:46:00.55 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][89a6192e] Entry chaincode: name:"exp02" +[075 01-09 07:46:00.56 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][89a6192e] Exit chaincode: name:"exp02" (4ms) +[076 01-09 07:46:00.56 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T07:46:00.555Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.24.0.7:55038", "grpc.code": "OK", "grpc.call_duration": "6.8017ms"} +[077 01-09 07:46:01.15 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][82e956e3] Entry chaincode: name:"lscc" +[078 01-09 07:46:01.15 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][82e956e3] Exit chaincode: name:"lscc" (3ms) +[079 01-09 07:46:01.16 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T07:46:01.149Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.24.0.7:55042", "grpc.code": "OK", "grpc.call_duration": "13.9729ms"} +[07a 01-09 07:46:01.34 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][b8c3cfdf] Entry chaincode: name:"lscc" +[07b 01-09 07:46:01.35 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][b8c3cfdf] Exit chaincode: name:"lscc" (1ms) +[07c 01-09 07:46:01.35 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T07:46:01.348Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.24.0.7:55048", "grpc.code": "OK", "grpc.call_duration": "3.7346ms"} +[07d 01-09 07:46:01.54 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][45dd4e0f] Entry chaincode: name:"lscc" +[07e 01-09 07:46:01.54 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][45dd4e0f] Exit chaincode: name:"lscc" (2ms) +[07f 01-09 07:46:01.54 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T07:46:01.542Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.24.0.7:55052", "grpc.code": "OK", "grpc.call_duration": "4.4496ms"} +[080 01-09 07:46:01.82 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][9d03d97d] Entry chaincode: name:"lscc" +[081 01-09 07:46:01.82 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][9d03d97d] Exit chaincode: name:"lscc" (1ms) +[082 01-09 07:46:01.83 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T07:46:01.823Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.24.0.7:55056", "grpc.code": "OK", "grpc.call_duration": "8.8364ms"} +[083 01-09 07:46:02.04 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][1db81a96] Entry chaincode: name:"lscc" +[084 01-09 07:46:02.04 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][1db81a96] Exit chaincode: name:"lscc" (3ms) +[085 01-09 07:46:02.04 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T07:46:02.039Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.24.0.7:55064", "grpc.code": "OK", "grpc.call_duration": "5.8508ms"} +[086 01-09 07:46:02.75 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][7a7db98a] Entry chaincode: name:"qscc" +[087 01-09 07:46:02.75 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][7a7db98a] Exit chaincode: name:"qscc" (3ms) +[088 01-09 07:46:02.76 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T07:46:02.745Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.24.0.7:55068", "grpc.code": "OK", "grpc.call_duration": "20.066ms"} +[089 01-09 07:46:03.01 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][74554b68] Entry chaincode: name:"qscc" +[08a 01-09 07:46:03.02 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][74554b68] Exit chaincode: name:"qscc" (2ms) +[08b 01-09 07:46:03.02 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T07:46:03.018Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.24.0.7:55072", "grpc.code": "OK", "grpc.call_duration": "5.2914ms"} +[08c 01-09 07:46:03.56 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][1efc0ade] Entry chaincode: name:"cscc" +[08d 01-09 07:46:03.56 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][1efc0ade] Exit chaincode: name:"cscc" (1ms) +[08e 01-09 07:46:03.56 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T07:46:03.559Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.24.0.7:55076", "grpc.code": "OK", "grpc.call_duration": "3.4588ms"} +[08f 01-09 07:46:03.78 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][a4ee9686] Entry chaincode: name:"cscc" +[090 01-09 07:46:03.78 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][a4ee9686] Exit chaincode: name:"cscc" (1ms) +[091 01-09 07:46:03.79 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T07:46:03.785Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.24.0.7:55080", "grpc.code": "OK", "grpc.call_duration": "8.0175ms"} +[092 01-09 07:46:04.00 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][2af78623] Entry chaincode: name:"cscc" +[093 01-09 07:46:04.00 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel][2af78623] Exit chaincode: name:"cscc" (3ms) +[094 01-09 07:46:04.01 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T07:46:04.004Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.24.0.7:55084", "grpc.code": "OK", "grpc.call_duration": "6.2782ms"} +[095 01-09 07:46:14.66 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Received block [6] from buffer +[096 01-09 07:46:14.66 UTC] [%{longpkg}] %{callpath} -> WARN De-duplicating identity [Org1MSP4a990d9ddc475ae0c719a406e0fbf388bcf3fe81bfd34a9c11f3a18eb4a4ed23] at index 2 in signature set +[097 01-09 07:46:14.66 UTC] [%{longpkg}] %{callpath} -> WARN De-duplicating identity [Org1MSP4a990d9ddc475ae0c719a406e0fbf388bcf3fe81bfd34a9c11f3a18eb4a4ed23] at index 2 in signature set +[098 01-09 07:46:14.71 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T07:46:14.715Z", "grpc.service": "gossip.Gossip", "grpc.method": "Ping", "grpc.request_deadline": "2019-01-09T07:46:16.715Z", "grpc.peer_address": "172.24.0.3:48446", "grpc.peer_subject": "CN=peer0.org2.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "128.5µs"} +[099 01-09 07:46:14.71 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T07:46:14.718Z", "grpc.service": "gossip.Gossip", "grpc.method": "Ping", "grpc.request_deadline": "2019-01-09T07:46:16.715Z", "grpc.peer_address": "172.24.0.4:41756", "grpc.peer_subject": "CN=peer1.org2.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "143.2µs"} +[09a 01-09 07:46:14.73 UTC] [%{longpkg}] %{callpath} -> INFO Joining gossip network of channel businesschannel with 3 organizations +[09b 01-09 07:46:14.74 UTC] [%{longpkg}] %{callpath} -> INFO Learning about the configured anchor peers of Org1MSP for channel businesschannel : [{peer0.org1.example.com 7051}] +[09c 01-09 07:46:14.74 UTC] [%{longpkg}] %{callpath} -> INFO Anchor peer with same endpoint, skipping connecting to myself +[09d 01-09 07:46:14.74 UTC] [%{longpkg}] %{callpath} -> INFO Learning about the configured anchor peers of Org2MSP for channel businesschannel : [{peer0.org2.example.com 7051}] +[09e 01-09 07:46:14.74 UTC] [%{longpkg}] %{callpath} -> INFO No configured anchor peers of Org3MSP for channel businesschannel to learn about +[09f 01-09 07:46:14.82 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Validated block [6] in 164ms +[0a0 01-09 07:46:14.84 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T07:44:18.858Z", "grpc.service": "gossip.Gossip", "grpc.method": "GossipStream", "grpc.peer_address": "172.24.0.3:48230", "grpc.peer_subject": "CN=peer0.org2.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "1m56.1264392s"} +[0a1 01-09 07:46:14.85 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T07:46:14.725Z", "grpc.service": "gossip.Gossip", "grpc.method": "GossipStream", "grpc.request_deadline": "2019-01-09T07:46:24.719Z", "grpc.peer_address": "172.24.0.3:48446", "grpc.peer_subject": "CN=peer0.org2.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "131.6606ms"} +[0a2 01-09 07:46:14.86 UTC] [%{longpkg}] %{callpath} -> INFO [businesschannel] Committed block [6] with 1 transaction(s) in 28ms (state_validation=1ms block_commit=19ms state_commit=4ms) +[0a3 01-09 07:46:14.88 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T07:46:14.883Z", "grpc.service": "gossip.Gossip", "grpc.method": "Ping", "grpc.request_deadline": "2019-01-09T07:46:16.883Z", "grpc.peer_address": "172.24.0.6:47584", "grpc.peer_subject": "CN=peer1.org1.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "163.9µs"} +[0a4 01-09 07:46:14.89 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T07:46:14.792Z", "grpc.service": "gossip.Gossip", "grpc.method": "GossipStream", "grpc.request_deadline": "2019-01-09T07:46:24.792Z", "grpc.peer_address": "172.24.0.4:41756", "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": "104.8958ms"} +[0a5 01-09 07:46:14.91 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T07:46:14.91Z", "grpc.service": "gossip.Gossip", "grpc.method": "Ping", "grpc.request_deadline": "2019-01-09T07:46:16.91Z", "grpc.peer_address": "172.24.0.4:41770", "grpc.peer_subject": "CN=peer1.org2.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "139.8µs"} +[0a6 01-09 07:46:14.91 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T07:44:18.577Z", "grpc.service": "gossip.Gossip", "grpc.method": "GossipStream", "grpc.peer_address": "172.24.0.6:47350", "grpc.peer_subject": "CN=peer1.org1.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "1m56.4737676s"} +[0a7 01-09 07:46:14.91 UTC] [%{longpkg}] %{callpath} -> INFO streaming call completed {"grpc.start_time": "2019-01-09T07:46:14.898Z", "grpc.service": "gossip.Gossip", "grpc.method": "GossipStream", "grpc.request_deadline": "2019-01-09T07:46:24.895Z", "grpc.peer_address": "172.24.0.6:47584", "grpc.peer_subject": "CN=peer1.org1.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "13.802ms"} +[0a8 01-09 07:46:14.91 UTC] [%{longpkg}] %{callpath} -> WARN peer0.org2.example.com:7051, PKIid:08a78261d5cf98650084a8b632cf100db1b4fe2b3a3cff312a132fcf2ef0ec05 isn't responsive: EOF +[0a9 01-09 07:46:14.92 UTC] [%{longpkg}] %{callpath} -> WARN Entering [08a78261d5cf98650084a8b632cf100db1b4fe2b3a3cff312a132fcf2ef0ec05] +[0aa 01-09 07:46:14.92 UTC] [%{longpkg}] %{callpath} -> WARN Closing connection to Endpoint: peer0.org2.example.com:7051, InternalEndpoint: , PKI-ID: 08a78261d5cf98650084a8b632cf100db1b4fe2b3a3cff312a132fcf2ef0ec05, Metadata: +[0ab 01-09 07:46:14.92 UTC] [%{longpkg}] %{callpath} -> WARN Exiting +[0ac 01-09 07:46:28.23 UTC] [%{longpkg}] %{callpath} -> INFO [][603a5d51] Entry chaincode: name:"cscc" +[0ad 01-09 07:46:28.23 UTC] [%{longpkg}] %{callpath} -> INFO [][603a5d51] Exit chaincode: name:"cscc" (1ms) +[0ae 01-09 07:46:28.23 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T07:46:28.236Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.24.0.7:55194", "grpc.code": "OK", "grpc.call_duration": "2.3614ms"} +[0af 01-09 07:46:29.62 UTC] [%{longpkg}] %{callpath} -> INFO [][be515b7e] Entry chaincode: name:"qscc" +[0b0 01-09 07:46:29.63 UTC] [%{longpkg}] %{callpath} -> INFO [][be515b7e] Exit chaincode: name:"qscc" (6ms) +[0b1 01-09 07:46:29.63 UTC] [%{longpkg}] %{callpath} -> INFO unary call completed {"grpc.start_time": "2019-01-09T07:46:29.626Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.24.0.7:55202", "grpc.code": "OK", "grpc.call_duration": "11.4575ms"} diff --git a/hyperledger_fabric/v1.4.0/base-solo.yaml b/hyperledger_fabric/v1.4.0/base-solo.yaml index 63503cfd..dc6e9564 100644 --- a/hyperledger_fabric/v1.4.0/base-solo.yaml +++ b/hyperledger_fabric/v1.4.0/base-solo.yaml @@ -53,6 +53,7 @@ services: hostname: orderer0.example.com ports: - "7050:7050" + - "8443:8443" volumes: - ./crypto-config/ordererOrganizations/example.com/orderers/orderer0.example.com/msp:/var/hyperledger/orderer/msp - ./crypto-config/ordererOrganizations/example.com/orderers/orderer0.example.com/tls/:/var/hyperledger/orderer/tls @@ -76,9 +77,10 @@ services: - ./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 ports: - - 7051:7051 - - 7052:7052 - - 7053:7053 + - "7051:7051" + - "7052:7052" + - "7053:7053" + - "9443:9443" peer1.org1.example.com: extends: @@ -97,9 +99,9 @@ services: - ./crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/msp:/etc/hyperledger/fabric/msp - ./crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/tls:/etc/hyperledger/fabric/tls ports: - - 8051:7051 - - 8052:7052 - - 8053:7053 + - "8051:7051" + - "8052:7052" + - "8053:7053" peer0.org2.example.com: extends: @@ -118,9 +120,9 @@ services: - ./crypto-config/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/msp:/etc/hyperledger/fabric/msp - ./crypto-config/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/tls:/etc/hyperledger/fabric/tls ports: - - 9051:7051 - - 9052:7052 - - 9053:7053 + - "9051:7051" + - "9052:7052" + - "9053:7053" peer1.org2.example.com: extends: @@ -139,9 +141,9 @@ services: - ./crypto-config/peerOrganizations/org2.example.com/peers/peer1.org2.example.com/msp:/etc/hyperledger/fabric/msp - ./crypto-config/peerOrganizations/org2.example.com/peers/peer1.org2.example.com/tls:/etc/hyperledger/fabric/tls ports: - - 10051:7051 - - 10052:7052 - - 10053:7053 + - "10051:7051" + - "10052:7052" + - "10053:7053" peer0.org3.example.com: extends: @@ -160,9 +162,9 @@ services: - ./crypto-config/peerOrganizations/org3.example.com/peers/peer0.org3.example.com/msp:/etc/hyperledger/fabric/msp - ./crypto-config/peerOrganizations/org3.example.com/peers/peer0.org3.example.com/tls:/etc/hyperledger/fabric/tls ports: - - 11051:7051 - - 11052:7052 - - 11053:7053 + - "11051:7051" + - "11052:7052" + - "11053:7053" cli: # client node extends: @@ -178,6 +180,15 @@ services: - ./solo/channel-artifacts:/tmp/channel-artifacts - ./examples:/opt/gopath/src/examples + prometheus: # prometheus will pull metrics from fabric + extends: + file: base.yaml + service: prometheus + container_name: prometheus + hostname: prometheus + ports: + - "9090:9090" + #deprecated event-listener: extends: diff --git a/hyperledger_fabric/v1.4.0/base.yaml b/hyperledger_fabric/v1.4.0/base.yaml index 546543a2..bc6f85bc 100644 --- a/hyperledger_fabric/v1.4.0/base.yaml +++ b/hyperledger_fabric/v1.4.0/base.yaml @@ -31,8 +31,8 @@ services: network_mode: ${NETWORK} # Default config can be found at https://github.com/hyperledger/fabric/blob/master/orderer/common/localconfig/config.go environment: - - ORDERER_GENERAL_LOGLEVEL=INFO # default: INFO - - ORDERER_GENERAL_LOGFORMAT=%{color}[%{id:03x} %{time:01-02 15:04:05.00 MST}] [%{longpkg}] %{callpath} -> %{level:.4s}%{color:reset} %{message} + - FABRIC_LOGGING_SPEC=INFO # default: INFO + - FABRIC_LOGGING_FORMAT=%{color}[%{id:03x} %{time:01-02 15:04:05.00 MST}] [%{longpkg}] %{callpath} -> %{level:.4s}%{color:reset} %{message} - ORDERER_GENERAL_LISTENADDRESS=0.0.0.0 # default: 127.0.0.1 - ORDERER_GENERAL_GENESISMETHOD=file # default: provisional - ORDERER_GENERAL_GENESISFILE=/var/hyperledger/orderer/orderer.genesis.block @@ -44,16 +44,19 @@ services: - ORDERER_GENERAL_MAXMESSAGECOUNT=10 - ORDERER_GENERAL_MAXWINDOWSIZE=1000 - ORDERER_GENERAL_LISTENPORT=7050 + - ORDERER_OPERATIONS_LISTENADDRESS=0.0.0.0:8443 # operation RESTful API + - ORDERER_METRICS_PROVIDER=prometheus # prometheus will pull metrics from orderer via /metrics RESTful API #- ORDERER_RAMLEDGER_HISTORY_SIZE=100 #only useful when use ram ledger # enabled TLS - ORDERER_GENERAL_TLS_ENABLED=true # default: false - ORDERER_GENERAL_TLS_PRIVATEKEY=/var/hyperledger/orderer/tls/server.key - ORDERER_GENERAL_TLS_CERTIFICATE=/var/hyperledger/orderer/tls/server.crt - ORDERER_GENERAL_TLS_ROOTCAS=[/var/hyperledger/orderer/tls/ca.crt] - volumes: - - $GOPATH/src/github.com/hyperledger/fabric:/go/src/github.com/hyperledger/fabric + #volumes: + #- $GOPATH/src/github.com/hyperledger/fabric:/go/src/github.com/hyperledger/fabric expose: - - "7050" # + - "7050" # gRPC + - "8443" # Operation REST #command: bash -c 'bash /tmp/orderer_build.sh; orderer start' # use this if to debug orderer command: orderer start @@ -62,13 +65,15 @@ services: restart: always network_mode: ${NETWORK} environment: - - CORE_LOGGING_LEVEL=INFO + - FABRIC_LOGGING_SPEC=INFO + - FABRIC_LOGGING_FORMAT=%{color}[%{id:03x} %{time:01-02 15:04:05.00 MST}] [%{longpkg}] %{callpath} -> %{level:.4s}%{color:reset} %{message} - CORE_PEER_ADDRESSAUTODETECT=false - - CORE_LOGGING_FORMAT=%{color}[%{id:03x} %{time:01-02 15:04:05.00 MST}] [%{longpkg}] %{callpath} -> %{level:.4s}%{color:reset} %{message} - CORE_VM_DOCKER_HOSTCONFIG_NETWORKMODE=${NETWORK} # uncomment this to use specific network - CORE_PEER_GOSSIP_USELEADERELECTION=true - CORE_PEER_GOSSIP_ORGLEADER=false # whether this node is the org leader, default to false - CORE_PEER_GOSSIP_EXTERNALENDPOINT=0.0.0.0:7051 # change to external addr for peers in other orgs + - CORE_OPERATIONS_LISTENADDRESS=0.0.0.0:9443 # operation RESTful API + - CORE_METRICS_PROVIDER=prometheus # prometheus will pull metrics from fabric via /metrics RESTful API - CORE_PEER_PROFILE_ENABLED=false - CORE_PEER_TLS_ENABLED=true - CORE_PEER_TLS_CERT_FILE=/etc/hyperledger/fabric/tls/server.crt @@ -77,13 +82,12 @@ services: - CORE_CHIANCODE_LOGGING_LEVEL=DEBUG - CORE_CHIANCODE_LOGGING_FORMAT=%{color}[%{id:03x} %{time:01-02 15:04:05.00 MST}] [%{longpkg}] %{callpath} -> %{level:.4s}%{color:reset} %{message} volumes: - - $GOPATH/src/github.com/hyperledger/fabric:/go/src/github.com/hyperledger/fabric + #- $GOPATH/src/github.com/hyperledger/fabric:/go/src/github.com/hyperledger/fabric # docker.sock is mapped as the default CORE_VM_ENDPOINT - /var/run/docker.sock:/var/run/docker.sock expose: - - "7051" # Grpc - - "7052" # Peer CLI - - "7053" # Peer Event + - "7051" # gRPC + - "9443" # Operation REST #command: bash -c 'bash /tmp/peer_build.sh; peer node start' command: peer node start @@ -93,13 +97,42 @@ services: network_mode: ${NETWORK} tty: true environment: - - CORE_LOGGING_LEVEL=DEBUG - - CORE_LOGGING_FORMAT=%{color}[%{id:03x} %{time:01-02 15:04:05.00 MST}] [%{module}] %{shortfunc} -> %{level:.4s}%{color:reset} %{message} + - FABRIC_LOGGING_SPEC=DEBUG + - FABRIC_LOGGING_FORMAT=%{color}[%{id:03x} %{time:01-02 15:04:05.00 MST}] [%{module}] %{shortfunc} -> %{level:.4s}%{color:reset} %{message} - CORE_PEER_TLS_ENABLED=true # to enable TLS, change to true - ORDERER_CA=/etc/hyperledger/fabric/crypto-config/ordererOrganizations/example.com/orderers/orderer0.example.com/msp/tlscacerts/tlsca.example.com-cert.pem working_dir: /opt/gopath/src/github.com/hyperledger/fabric/peer command: bash -c 'cd /tmp; source scripts/func.sh; while true; do sleep 20170504; done' + prometheus: # prometheus will pull metrics from fabric + image: prom/prometheus:v2.6.0 + restart: always + network_mode: ${NETWORK} + tty: true + volumes: + - ./prometheus.yml:/etc/prometheus/prometheus.yml + + #deprecated + event-listener: + extends: + file: base.yaml + service: event-listener-base + container_name: fabric-event-listener + hostname: fabric-event-listener + environment: + - CORE_PEER_ADDRESS=peer0.org1.example.com:7051 # default to operate on peer0.org1 + - CORE_PEER_LOCALMSPID=Org1MSP + - CORE_PEER_TLS_CERT_FILE=/etc/hyperledger/fabric/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/tls/server.crt + - CORE_PEER_TLS_KEY_FILE=/etc/hyperledger/fabric/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/tls/server.key + - CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/tls/ca.crt + - CORE_PEER_MSPCONFIGPATH=/etc/hyperledger/fabric/crypto-config/peerOrganizations/org1.example.com/peers/peer0.Org1.example.com/msp + volumes: + - ./scripts:/tmp/scripts + - ./crypto-config.yaml:/etc/hyperledger/fabric/crypto-config.yaml + - ./crypto-config:/etc/hyperledger/fabric/crypto-config + - ./solo/configtx.yaml:/etc/hyperledger/fabric/configtx.yaml + - ./solo/channel-artifacts:/tmp/channel-artifacts + - ./examples:/opt/gopath/src/examples #deprecated event-listener-base: image: yeasy/hyperledger-fabric:${FABRIC_IMG_TAG} diff --git a/hyperledger_fabric/v1.4.0/docker-compose-2orgs-4peers-solo.yaml b/hyperledger_fabric/v1.4.0/docker-compose-2orgs-4peers-solo.yaml index 460168e9..082fb4c1 100644 --- a/hyperledger_fabric/v1.4.0/docker-compose-2orgs-4peers-solo.yaml +++ b/hyperledger_fabric/v1.4.0/docker-compose-2orgs-4peers-solo.yaml @@ -56,6 +56,17 @@ services: depends_on: - orderer0.example.com + prometheus: + extends: + file: base-solo.yaml + service: prometheus + depends_on: + - orderer0.example.com + - peer0.org1.example.com + - peer1.org1.example.com + - peer0.org2.example.com + - peer1.org2.example.com + #networks: # default: # external: diff --git a/hyperledger_fabric/v1.4.0/prometheus.yml b/hyperledger_fabric/v1.4.0/prometheus.yml new file mode 100644 index 00000000..2efaca40 --- /dev/null +++ b/hyperledger_fabric/v1.4.0/prometheus.yml @@ -0,0 +1,45 @@ +# my global config +global: + scrape_interval: 15s # Set the scrape interval to every 15 seconds. Default is every 1 minute. + evaluation_interval: 15s # Evaluate rules every 15 seconds. The default is every 1 minute. + # scrape_timeout is set to the global default (10s). + +# Alertmanager configuration +alerting: + alertmanagers: + - static_configs: + - targets: + # - alertmanager:9093 + +# Load rules once and periodically evaluate them according to the global 'evaluation_interval'. +rule_files: + # - "first_rules.yml" + # - "second_rules.yml" + +# A scrape configuration containing exactly one endpoint to scrape: +# Here it's Prometheus itself. +scrape_configs: + # The job name is added as a label `job=` to any timeseries scraped from this config. + #- job_name: 'prometheus' + + # metrics_path defaults to '/metrics' + # scheme defaults to 'http'. + + #static_configs: + #- targets: ['localhost:9090'] + + - job_name: 'orderer0' + static_configs: + - targets: ['orderer0.example.com:8443'] + - job_name: 'peer0_org1' + static_configs: + - targets: ['peer0.org1.example.com:9443'] + - job_name: 'peer1_org1' + static_configs: + - targets: ['peer1.org1.example.com:9443'] + - job_name: 'peer0_org2' + static_configs: + - targets: ['peer0.org2.example.com:9443'] + - job_name: 'peer1_org2' + static_configs: + - targets: ['peer1.org2.example.com:9443'] diff --git a/hyperledger_fabric/v1.4.0/scripts/download_images.sh b/hyperledger_fabric/v1.4.0/scripts/download_images.sh index 090819f2..ed7c2abf 100644 --- a/hyperledger_fabric/v1.4.0/scripts/download_images.sh +++ b/hyperledger_fabric/v1.4.0/scripts/download_images.sh @@ -39,12 +39,19 @@ for IMG in baseimage baseos couchdb kafka zookeeper; do pull_image $HLF_IMG done +# TODO: official core.yaml still use PROJECT_VERSION for fabric-baseos, however, dockerhub does not have the version +docker tag hyperledger/fabric-baseos:$ARCH-$BASE_IMG_TAG hyperledger/fabric-baseos:$FABRIC_IMG_TAG + # Only useful for debugging # docker pull yeasy/hyperledger-fabric echo "=== Pulling fabric images ${FABRIC_IMG_TAG} from fabric repo... ===" for IMG in peer tools orderer ca ccenv tools; do - HLF_IMG=hyperledger/fabric-${IMG}:$ARCH-$FABRIC_IMG_TAG + if ["$FABRIC_IMG_TAG" == "latest"]; then + HLF_IMG=hyperledger/fabric-${IMG}:$FABRIC_IMG_TAG + else + HLF_IMG=hyperledger/fabric-${IMG}:$ARCH-$FABRIC_IMG_TAG + fi pull_image $HLF_IMG done 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 960abeff..bd24b3fe 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 a35618e3..767ebe15 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 93ebc705..5edbd958 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 474af832..81451158 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 c7107ecc..ed7e5420 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 fd2f6763..f238075d 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 ac479b8b..e9f6d93a 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 ac479b8b..e9f6d93a 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 0021bf95..779ebd31 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": "MEUCIQD+BM2NnTKeMq1IK1wIhrADe+ax1Ptb6h1dZSEIwgCKowIgNCUucwC5E0gW4yFD8iqqsuswAN6g+65DiqCSN0ygNZc=", + "signature": "MEUCIQDJyDo10O2t8CiMjpdS8xAmIXicvAjyK4j5rdL6t16RoQIgH0UCckbPl+6X/jBQxG3SGuhi5VsU3UfovMt6iNUNwNQ=", "signature_header": { "creator": { "id_bytes": "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNLakNDQWRDZ0F3SUJBZ0lRQVhwNnBiWXZYT1ExOU85NzQ5UEVKakFLQmdncWhrak9QUVFEQWpCek1Rc3cKQ1FZRFZRUUdFd0pWVXpFVE1CRUdBMVVFQ0JNS1EyRnNhV1p2Y201cFlURVdNQlFHQTFVRUJ4TU5VMkZ1SUVaeQpZVzVqYVhOamJ6RVpNQmNHQTFVRUNoTVFiM0puTWk1bGVHRnRjR3hsTG1OdmJURWNNQm9HQTFVRUF4TVRZMkV1CmIzSm5NaTVsZUdGdGNHeGxMbU52YlRBZUZ3MHhPREV5TVRrd09EQTJNREJhRncweU9ERXlNVFl3T0RBMk1EQmEKTUd3eEN6QUpCZ05WQkFZVEFsVlRNUk13RVFZRFZRUUlFd3BEWVd4cFptOXlibWxoTVJZd0ZBWURWUVFIRXcxVApZVzRnUm5KaGJtTnBjMk52TVE4d0RRWURWUVFMRXdaamJHbGxiblF4SHpBZEJnTlZCQU1NRmtGa2JXbHVRRzl5Clp6SXVaWGhoYlhCc1pTNWpiMjB3V1RBVEJnY3Foa2pPUFFJQkJnZ3Foa2pPUFFNQkJ3TkNBQVFmT2MxWlFxL0sKOEVqa1VwemVwTTJzVFAwSHhQUVk1a1Fnd1g0ZDk1Yk05UGVTblRQclB1QU1ZcHpxTUlkL3MxUXBHV01Wa1czMApzQXp5SHJPbW0yZDNvMDB3U3pBT0JnTlZIUThCQWY4RUJBTUNCNEF3REFZRFZSMFRBUUgvQkFJd0FEQXJCZ05WCkhTTUVKREFpZ0NCV1ZnOFNuT1o5aUNJbzNPcXR0UUoweGR0bXNhaXFsdmtCYXRMYmFMM1lnekFLQmdncWhrak8KUFFRREFnTklBREJGQWlFQXkxcjNmaVR6aDhWNjJrTklCMmc1WCtaNkxub0NKdzV1MzZrSVM2MG1FQVlDSUV3OApDSWZXMlNvYXptRFR4NmRZVHl0b2I0cE52aUl6a0loRHpkVUFmV0c0Ci0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0K", "mspid": "Org2MSP" }, - "nonce": "VN5osd9gmaJ8m97/8qiJ+epuviXDwvNL" + "nonce": "1/qZ2sOSZvZXOIozlG7iqfpoebHmcG8Z" } } ] @@ -839,7 +839,7 @@ "channel_id": "businesschannel", "epoch": "0", "extension": null, - "timestamp": "2018-12-19T08:11:45Z", + "timestamp": "2019-01-09T08:56:57Z", "tls_cert_hash": null, "tx_id": "", "type": 2, @@ -850,11 +850,11 @@ "id_bytes": "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNLakNDQWRDZ0F3SUJBZ0lRQVhwNnBiWXZYT1ExOU85NzQ5UEVKakFLQmdncWhrak9QUVFEQWpCek1Rc3cKQ1FZRFZRUUdFd0pWVXpFVE1CRUdBMVVFQ0JNS1EyRnNhV1p2Y201cFlURVdNQlFHQTFVRUJ4TU5VMkZ1SUVaeQpZVzVqYVhOamJ6RVpNQmNHQTFVRUNoTVFiM0puTWk1bGVHRnRjR3hsTG1OdmJURWNNQm9HQTFVRUF4TVRZMkV1CmIzSm5NaTVsZUdGdGNHeGxMbU52YlRBZUZ3MHhPREV5TVRrd09EQTJNREJhRncweU9ERXlNVFl3T0RBMk1EQmEKTUd3eEN6QUpCZ05WQkFZVEFsVlRNUk13RVFZRFZRUUlFd3BEWVd4cFptOXlibWxoTVJZd0ZBWURWUVFIRXcxVApZVzRnUm5KaGJtTnBjMk52TVE4d0RRWURWUVFMRXdaamJHbGxiblF4SHpBZEJnTlZCQU1NRmtGa2JXbHVRRzl5Clp6SXVaWGhoYlhCc1pTNWpiMjB3V1RBVEJnY3Foa2pPUFFJQkJnZ3Foa2pPUFFNQkJ3TkNBQVFmT2MxWlFxL0sKOEVqa1VwemVwTTJzVFAwSHhQUVk1a1Fnd1g0ZDk1Yk05UGVTblRQclB1QU1ZcHpxTUlkL3MxUXBHV01Wa1czMApzQXp5SHJPbW0yZDNvMDB3U3pBT0JnTlZIUThCQWY4RUJBTUNCNEF3REFZRFZSMFRBUUgvQkFJd0FEQXJCZ05WCkhTTUVKREFpZ0NCV1ZnOFNuT1o5aUNJbzNPcXR0UUoweGR0bXNhaXFsdmtCYXRMYmFMM1lnekFLQmdncWhrak8KUFFRREFnTklBREJGQWlFQXkxcjNmaVR6aDhWNjJrTklCMmc1WCtaNkxub0NKdzV1MzZrSVM2MG1FQVlDSUV3OApDSWZXMlNvYXptRFR4NmRZVHl0b2I0cE52aUl6a0loRHpkVUFmV0c0Ci0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0K", "mspid": "Org2MSP" }, - "nonce": "yiAN3atkiacYH1CTPpEoOSBll4zRdSuj" + "nonce": "LB+BRvhfGsEbyiZ1RAg6oBZ2rhtnTDem" } } }, - "signature": "MEQCIBP0p584VOFIpOtoaFyFuqsjhM6PQ8tqqsTjoPC64lFXAiBAAbofn8Y3IncrxlY2S/6524ospZty5zacGiqwO/4QQg==" + "signature": "MEQCIA+GOM+q4a9oCKYtH7iGy920HAfYoiqj6mDopUgMpociAiBj4S7k5sr1fjC6y+Zea0DGSpSHbgV2GuBe3UIDkwBbhA==" } }, "header": { @@ -862,7 +862,7 @@ "channel_id": "businesschannel", "epoch": "0", "extension": null, - "timestamp": "2018-12-19T08:11:45Z", + "timestamp": "2019-01-09T08:56:57Z", "tls_cert_hash": null, "tx_id": "", "type": 1, @@ -873,23 +873,23 @@ "id_bytes": "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNEVENDQWJTZ0F3SUJBZ0lSQUp6ZzE3bXlLSm42K1ZyUlhwaTdsalF3Q2dZSUtvWkl6ajBFQXdJd2FURUwKTUFrR0ExVUVCaE1DVlZNeEV6QVJCZ05WQkFnVENrTmhiR2xtYjNKdWFXRXhGakFVQmdOVkJBY1REVk5oYmlCRwpjbUZ1WTJselkyOHhGREFTQmdOVkJBb1RDMlY0WVcxd2JHVXVZMjl0TVJjd0ZRWURWUVFERXc1allTNWxlR0Z0CmNHeGxMbU52YlRBZUZ3MHhPREV5TVRrd09EQTJNREJhRncweU9ERXlNVFl3T0RBMk1EQmFNRmt4Q3pBSkJnTlYKQkFZVEFsVlRNUk13RVFZRFZRUUlFd3BEWVd4cFptOXlibWxoTVJZd0ZBWURWUVFIRXcxVFlXNGdSbkpoYm1OcApjMk52TVIwd0d3WURWUVFERXhSdmNtUmxjbVZ5TUM1bGVHRnRjR3hsTG1OdmJUQlpNQk1HQnlxR1NNNDlBZ0VHCkNDcUdTTTQ5QXdFSEEwSUFCQVN5UUUwY0l3MFNGMzVkSjE5QlpUa1JPQnVBdksrL096Vy9lRE9mWHdmRDVSR3YKd2dyMld0VXBKaURMOU1wRjZTTENqT1Q0RFMvMlJPem1GUVpWMWdTalRUQkxNQTRHQTFVZER3RUIvd1FFQXdJSApnREFNQmdOVkhSTUJBZjhFQWpBQU1Dc0dBMVVkSXdRa01DS0FJRU9lOEErQk83Z3prWVVpd0hMYTJuV2dSK3J1CjBTZ2lBcm91cWVnclkrSm9NQW9HQ0NxR1NNNDlCQU1DQTBjQU1FUUNJR1AxNEk1ejVLZ0kwZVJjc2MyQjlVUHIKNnMyc2NFYWZQRWdEbTZuZUhSNmhBaUJOdU9MOUtad1ZQYlBHdVZrU1U5d1B6bVVwOGdvQzhIR28zaTF3V0ZCaAo0UT09Ci0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0K", "mspid": "OrdererMSP" }, - "nonce": "iks4o+8sdrniMdjG6SI8q/vg6PfQcJhu" + "nonce": "0kA4nb0znnBi35VKBdR60HgSRUMzgp3s" } } }, - "signature": "MEUCIQD5e7Zlz13KKZ/ewyoB8SMAHlS8XYI/3zcZbkVbrjp6+QIgE39jIktaHjMCjYnLWA6D3D9Ppp7LgVxoevbQYir80zg=" + "signature": "MEQCIBZ9T7FzQb24GbIytDukYSaP4pYr+G0yJzTRaO4JgCVaAiAMrWI73IjFARsT5E2vwV6pzjV1By9BV7wmIIe7PWy6KQ==" } ] }, "header": { - "data_hash": "mT4Yq52NxgEBNE1Pokdu7f/584wSOdxJ3LU8OSXaemo=", + "data_hash": "mspN+NaVyRsp5+1u7ClY+CoBvihGrMzIApbnguAGRSA=", "number": "2", - "previous_hash": "DzD2B3w8emSs+zD1hftrxVKhMaFccE6a3iIUANv9RpQ=" + "previous_hash": "b4pTE18u/1OiDQUOAIBTDMrFGtgDE5eDWpP2eluh1Hc=" }, "metadata": { "metadata": [ - "Ev4GCrIGCpUGCgpPcmRlcmVyTVNQEoYGLS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNEVENDQWJTZ0F3SUJBZ0lSQUp6ZzE3bXlLSm42K1ZyUlhwaTdsalF3Q2dZSUtvWkl6ajBFQXdJd2FURUwKTUFrR0ExVUVCaE1DVlZNeEV6QVJCZ05WQkFnVENrTmhiR2xtYjNKdWFXRXhGakFVQmdOVkJBY1REVk5oYmlCRwpjbUZ1WTJselkyOHhGREFTQmdOVkJBb1RDMlY0WVcxd2JHVXVZMjl0TVJjd0ZRWURWUVFERXc1allTNWxlR0Z0CmNHeGxMbU52YlRBZUZ3MHhPREV5TVRrd09EQTJNREJhRncweU9ERXlNVFl3T0RBMk1EQmFNRmt4Q3pBSkJnTlYKQkFZVEFsVlRNUk13RVFZRFZRUUlFd3BEWVd4cFptOXlibWxoTVJZd0ZBWURWUVFIRXcxVFlXNGdSbkpoYm1OcApjMk52TVIwd0d3WURWUVFERXhSdmNtUmxjbVZ5TUM1bGVHRnRjR3hsTG1OdmJUQlpNQk1HQnlxR1NNNDlBZ0VHCkNDcUdTTTQ5QXdFSEEwSUFCQVN5UUUwY0l3MFNGMzVkSjE5QlpUa1JPQnVBdksrL096Vy9lRE9mWHdmRDVSR3YKd2dyMld0VXBKaURMOU1wRjZTTENqT1Q0RFMvMlJPem1GUVpWMWdTalRUQkxNQTRHQTFVZER3RUIvd1FFQXdJSApnREFNQmdOVkhSTUJBZjhFQWpBQU1Dc0dBMVVkSXdRa01DS0FJRU9lOEErQk83Z3prWVVpd0hMYTJuV2dSK3J1CjBTZ2lBcm91cWVnclkrSm9NQW9HQ0NxR1NNNDlCQU1DQTBjQU1FUUNJR1AxNEk1ejVLZ0kwZVJjc2MyQjlVUHIKNnMyc2NFYWZQRWdEbTZuZUhSNmhBaUJOdU9MOUtad1ZQYlBHdVZrU1U5d1B6bVVwOGdvQzhIR28zaTF3V0ZCaAo0UT09Ci0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0KEhgYcb3Nyo6biKPPPcMqB4m+TuLm6y8a8bMSRzBFAiEA/tis22/RpV54nTixDkN22NCcyvmv49hsDymabcBpCm8CIBBcoTdOIpyZ2s/OUaLdcLkwRRZesd4gQtn+R0p5WXrL", - "CgIIAhL9BgqyBgqVBgoKT3JkZXJlck1TUBKGBi0tLS0tQkVHSU4gQ0VSVElGSUNBVEUtLS0tLQpNSUlDRFRDQ0FiU2dBd0lCQWdJUkFKemcxN215S0puNitWclJYcGk3bGpRd0NnWUlLb1pJemowRUF3SXdhVEVMCk1Ba0dBMVVFQmhNQ1ZWTXhFekFSQmdOVkJBZ1RDa05oYkdsbWIzSnVhV0V4RmpBVUJnTlZCQWNURFZOaGJpQkcKY21GdVkybHpZMjh4RkRBU0JnTlZCQW9UQzJWNFlXMXdiR1V1WTI5dE1SY3dGUVlEVlFRREV3NWpZUzVsZUdGdApjR3hsTG1OdmJUQWVGdzB4T0RFeU1Ua3dPREEyTURCYUZ3MHlPREV5TVRZd09EQTJNREJhTUZreEN6QUpCZ05WCkJBWVRBbFZUTVJNd0VRWURWUVFJRXdwRFlXeHBabTl5Ym1saE1SWXdGQVlEVlFRSEV3MVRZVzRnUm5KaGJtTnAKYzJOdk1SMHdHd1lEVlFRREV4UnZjbVJsY21WeU1DNWxlR0Z0Y0d4bExtTnZiVEJaTUJNR0J5cUdTTTQ5QWdFRwpDQ3FHU000OUF3RUhBMElBQkFTeVFFMGNJdzBTRjM1ZEoxOUJaVGtST0J1QXZLKy9PelcvZURPZlh3ZkQ1Ukd2CndncjJXdFVwSmlETDlNcEY2U0xDak9UNERTLzJST3ptRlFaVjFnU2pUVEJMTUE0R0ExVWREd0VCL3dRRUF3SUgKZ0RBTUJnTlZIUk1CQWY4RUFqQUFNQ3NHQTFVZEl3UWtNQ0tBSUVPZThBK0JPN2d6a1lVaXdITGEybldnUitydQowU2dpQXJvdXFlZ3JZK0pvTUFvR0NDcUdTTTQ5QkFNQ0EwY0FNRVFDSUdQMTRJNXo1S2dJMGVSY3NjMkI5VVByCjZzMnNjRWFmUEVnRG02bmVIUjZoQWlCTnVPTDlLWndWUGJQR3VWa1NVOXdQem1VcDhnb0M4SEdvM2kxd1dGQmgKNFE9PQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tChIYi2dVPxxwxAd1MOB35oeWQimOQiG8rmIuEkYwRAIgGCdmFfIqXWc4Z0PtRD1uqH+/iFIyEjIx/iIgJl1dNT0CIDkR+i8+pMPusCwsNWglywH5L2JM02ps3ampTZXl/WgG", + "Ev0GCrIGCpUGCgpPcmRlcmVyTVNQEoYGLS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNEVENDQWJTZ0F3SUJBZ0lSQUp6ZzE3bXlLSm42K1ZyUlhwaTdsalF3Q2dZSUtvWkl6ajBFQXdJd2FURUwKTUFrR0ExVUVCaE1DVlZNeEV6QVJCZ05WQkFnVENrTmhiR2xtYjNKdWFXRXhGakFVQmdOVkJBY1REVk5oYmlCRwpjbUZ1WTJselkyOHhGREFTQmdOVkJBb1RDMlY0WVcxd2JHVXVZMjl0TVJjd0ZRWURWUVFERXc1allTNWxlR0Z0CmNHeGxMbU52YlRBZUZ3MHhPREV5TVRrd09EQTJNREJhRncweU9ERXlNVFl3T0RBMk1EQmFNRmt4Q3pBSkJnTlYKQkFZVEFsVlRNUk13RVFZRFZRUUlFd3BEWVd4cFptOXlibWxoTVJZd0ZBWURWUVFIRXcxVFlXNGdSbkpoYm1OcApjMk52TVIwd0d3WURWUVFERXhSdmNtUmxjbVZ5TUM1bGVHRnRjR3hsTG1OdmJUQlpNQk1HQnlxR1NNNDlBZ0VHCkNDcUdTTTQ5QXdFSEEwSUFCQVN5UUUwY0l3MFNGMzVkSjE5QlpUa1JPQnVBdksrL096Vy9lRE9mWHdmRDVSR3YKd2dyMld0VXBKaURMOU1wRjZTTENqT1Q0RFMvMlJPem1GUVpWMWdTalRUQkxNQTRHQTFVZER3RUIvd1FFQXdJSApnREFNQmdOVkhSTUJBZjhFQWpBQU1Dc0dBMVVkSXdRa01DS0FJRU9lOEErQk83Z3prWVVpd0hMYTJuV2dSK3J1CjBTZ2lBcm91cWVnclkrSm9NQW9HQ0NxR1NNNDlCQU1DQTBjQU1FUUNJR1AxNEk1ejVLZ0kwZVJjc2MyQjlVUHIKNnMyc2NFYWZQRWdEbTZuZUhSNmhBaUJOdU9MOUtad1ZQYlBHdVZrU1U5d1B6bVVwOGdvQzhIR28zaTF3V0ZCaAo0UT09Ci0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0KEhjjoNG9qkitfT0kGv5gvLP79f+GuC4X7rcSRjBEAiA9JfDq2OjvkOs+Mf7TnmMlPXcD0mSPr1XbhXHY/OrKgQIgSxIA4OnunjIwP1gEQwEyhNOR9cBFhPgynWuVHnksWPQ=", + "CgIIAhL9BgqyBgqVBgoKT3JkZXJlck1TUBKGBi0tLS0tQkVHSU4gQ0VSVElGSUNBVEUtLS0tLQpNSUlDRFRDQ0FiU2dBd0lCQWdJUkFKemcxN215S0puNitWclJYcGk3bGpRd0NnWUlLb1pJemowRUF3SXdhVEVMCk1Ba0dBMVVFQmhNQ1ZWTXhFekFSQmdOVkJBZ1RDa05oYkdsbWIzSnVhV0V4RmpBVUJnTlZCQWNURFZOaGJpQkcKY21GdVkybHpZMjh4RkRBU0JnTlZCQW9UQzJWNFlXMXdiR1V1WTI5dE1SY3dGUVlEVlFRREV3NWpZUzVsZUdGdApjR3hsTG1OdmJUQWVGdzB4T0RFeU1Ua3dPREEyTURCYUZ3MHlPREV5TVRZd09EQTJNREJhTUZreEN6QUpCZ05WCkJBWVRBbFZUTVJNd0VRWURWUVFJRXdwRFlXeHBabTl5Ym1saE1SWXdGQVlEVlFRSEV3MVRZVzRnUm5KaGJtTnAKYzJOdk1SMHdHd1lEVlFRREV4UnZjbVJsY21WeU1DNWxlR0Z0Y0d4bExtTnZiVEJaTUJNR0J5cUdTTTQ5QWdFRwpDQ3FHU000OUF3RUhBMElBQkFTeVFFMGNJdzBTRjM1ZEoxOUJaVGtST0J1QXZLKy9PelcvZURPZlh3ZkQ1Ukd2CndncjJXdFVwSmlETDlNcEY2U0xDak9UNERTLzJST3ptRlFaVjFnU2pUVEJMTUE0R0ExVWREd0VCL3dRRUF3SUgKZ0RBTUJnTlZIUk1CQWY4RUFqQUFNQ3NHQTFVZEl3UWtNQ0tBSUVPZThBK0JPN2d6a1lVaXdITGEybldnUitydQowU2dpQXJvdXFlZ3JZK0pvTUFvR0NDcUdTTTQ5QkFNQ0EwY0FNRVFDSUdQMTRJNXo1S2dJMGVSY3NjMkI5VVByCjZzMnNjRWFmUEVnRG02bmVIUjZoQWlCTnVPTDlLWndWUGJQR3VWa1NVOXdQem1VcDhnb0M4SEdvM2kxd1dGQmgKNFE9PQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tChIYq4nOwwpCNoGsaJOt5bHkCmNAsCfimGEgEkYwRAIgLksh1wJCKBTZrqaNF+KPynX1tLLqOFEoTqCdtQrp/eoCIDhHxpUe0MpG8j1TsPmaVcYXq46UmmnTWFQtzO1iSVEP", "", "" ] 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 38261e96..5c439974 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 f8fa08e7..e779b5ae 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 c6dc3371..0cbc024c 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 49fdf3f1..d6d8e8dd 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 d5c15daa..a58f3400 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 7c538aec..a38b32ea 100644 --- a/hyperledger_fabric/v1.4.0/solo/logs/dev_all.log +++ b/hyperledger_fabric/v1.4.0/solo/logs/dev_all.log @@ -1,767 +1,773 @@ -Attaching to peer0.org1.example.com, peer1.org1.example.com, peer1.org2.example.com, peer0.org2.example.com, fabric-cli, orderer0.example.com -peer0.org1.example.com | 2018-12-19 08:11:36.617 UTC [main] InitCmd -> WARN 001 CORE_LOGGING_LEVEL is no longer supported, please use the FABRIC_LOGGING_SPEC environment variable -peer0.org1.example.com | 2018-12-19 08:11:36.694 UTC [nodeCmd] serve -> INFO 002 Starting peer: -peer0.org1.example.com | Version: 1.4.0-rc1 -peer0.org1.example.com | Commit SHA: development build -peer0.org1.example.com | Go version: go1.11.2 -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 | 2018-12-19 08:11:36.695 UTC [ledgermgmt] initialize -> INFO 003 Initializing ledger mgmt -peer0.org1.example.com | 2018-12-19 08:11:36.695 UTC [kvledger] NewProvider -> INFO 004 Initializing ledger provider -peer0.org1.example.com | 2018-12-19 08:11:36.746 UTC [kvledger] NewProvider -> INFO 005 ledger provider Initialized -peer0.org1.example.com | 2018-12-19 08:11:36.803 UTC [ledgermgmt] initialize -> INFO 006 ledger mgmt initialized -peer0.org1.example.com | 2018-12-19 08:11:36.803 UTC [peer] func1 -> INFO 007 Auto-detected peer address: 172.18.0.7:7051 -peer0.org1.example.com | 2018-12-19 08:11:36.803 UTC [peer] func1 -> INFO 008 Returning peer0.org1.example.com:7051 -peer0.org1.example.com | 2018-12-19 08:11:36.804 UTC [peer] func1 -> INFO 009 Auto-detected peer address: 172.18.0.7:7051 -peer0.org1.example.com | 2018-12-19 08:11:36.804 UTC [peer] func1 -> INFO 00a Returning peer0.org1.example.com:7051 -peer0.org1.example.com | 2018-12-19 08:11:36.820 UTC [nodeCmd] serve -> INFO 00b Starting peer with TLS enabled -peer0.org1.example.com | 2018-12-19 08:11:36.830 UTC [nodeCmd] computeChaincodeEndpoint -> INFO 00c Entering computeChaincodeEndpoint with peerHostname: peer0.org1.example.com -peer0.org1.example.com | 2018-12-19 08:11:36.830 UTC [nodeCmd] computeChaincodeEndpoint -> INFO 00d Exit with ccEndpoint: peer0.org1.example.com:7052 -peer0.org1.example.com | 2018-12-19 08:11:36.844 UTC [sccapi] registerSysCC -> INFO 00e system chaincode lscc(github.com/hyperledger/fabric/core/scc/lscc) registered -peer0.org1.example.com | 2018-12-19 08:11:36.844 UTC [sccapi] registerSysCC -> INFO 00f system chaincode cscc(github.com/hyperledger/fabric/core/scc/cscc) registered -peer0.org1.example.com | 2018-12-19 08:11:36.844 UTC [sccapi] registerSysCC -> INFO 010 system chaincode qscc(github.com/hyperledger/fabric/core/scc/qscc) registered -peer0.org1.example.com | 2018-12-19 08:11:36.844 UTC [sccapi] registerSysCC -> INFO 011 system chaincode +lifecycle(github.com/hyperledger/fabric/core/chaincode/lifecycle) registered -peer0.org1.example.com | 2018-12-19 08:11:36.858 UTC [gossip.service] func1 -> INFO 012 Initialize gossip with endpoint peer0.org1.example.com:7051 and bootstrap set [127.0.0.1:7051] -peer0.org1.example.com | 2018-12-19 08:11:36.867 UTC [gossip.gossip] NewGossipService -> INFO 013 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 | 2018-12-19 08:11:36.869 UTC [gossip.gossip] start -> INFO 014 Gossip instance peer0.org1.example.com:7051 started -peer0.org1.example.com | 2018-12-19 08:11:36.872 UTC [sccapi] deploySysCC -> INFO 015 system chaincode lscc/(github.com/hyperledger/fabric/core/scc/lscc) deployed -peer0.org1.example.com | 2018-12-19 08:11:36.873 UTC [cscc] Init -> INFO 016 Init CSCC -peer0.org1.example.com | 2018-12-19 08:11:36.873 UTC [sccapi] deploySysCC -> INFO 017 system chaincode cscc/(github.com/hyperledger/fabric/core/scc/cscc) deployed -peer0.org1.example.com | 2018-12-19 08:11:36.875 UTC [qscc] Init -> INFO 018 Init QSCC -peer0.org1.example.com | 2018-12-19 08:11:36.876 UTC [sccapi] deploySysCC -> INFO 019 system chaincode qscc/(github.com/hyperledger/fabric/core/scc/qscc) deployed -peer0.org1.example.com | 2018-12-19 08:11:36.878 UTC [sccapi] deploySysCC -> INFO 01a system chaincode +lifecycle/(github.com/hyperledger/fabric/core/chaincode/lifecycle) deployed -peer0.org1.example.com | 2018-12-19 08:11:36.878 UTC [nodeCmd] serve -> INFO 01b Deployed system chaincodes -peer0.org1.example.com | 2018-12-19 08:11:36.881 UTC [discovery] NewService -> INFO 01c Created with config TLS: true, authCacheMaxSize: 1000, authCachePurgeRatio: 0.750000 -peer0.org1.example.com | 2018-12-19 08:11:36.881 UTC [nodeCmd] registerDiscoveryService -> INFO 01d Discovery service activated -peer0.org1.example.com | 2018-12-19 08:11:36.881 UTC [nodeCmd] serve -> INFO 01e Starting peer with ID=[name:"peer0.org1.example.com" ], network ID=[dev], address=[peer0.org1.example.com:7051] -peer0.org1.example.com | 2018-12-19 08:11:36.882 UTC [nodeCmd] serve -> INFO 01f Started peer with ID=[name:"peer0.org1.example.com" ], network ID=[dev], address=[peer0.org1.example.com:7051] -peer0.org1.example.com | 2018-12-19 08:11:36.907 UTC [comm.grpc.server] 1 -> INFO 020 unary call completed {"grpc.start_time": "2018-12-19T08:11:36.907Z", "grpc.service": "gossip.Gossip", "grpc.method": "Ping", "grpc.request_deadline": "2018-12-19T08:11:38.905Z", "grpc.peer_address": "172.18.0.4:56956", "grpc.peer_subject": "CN=peer1.org1.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "123.1µs"} -peer0.org1.example.com | 2018-12-19 08:11:36.917 UTC [comm.grpc.server] 1 -> INFO 021 streaming call completed {"grpc.start_time": "2018-12-19T08:11:36.909Z", "grpc.service": "gossip.Gossip", "grpc.method": "GossipStream", "grpc.request_deadline": "2018-12-19T08:11:46.909Z", "grpc.peer_address": "172.18.0.4:56956", "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": "8.1053ms"} -peer0.org1.example.com | 2018-12-19 08:11:36.921 UTC [comm.grpc.server] 1 -> INFO 022 unary call completed {"grpc.start_time": "2018-12-19T08:11:36.921Z", "grpc.service": "gossip.Gossip", "grpc.method": "Ping", "grpc.request_deadline": "2018-12-19T08:11:38.92Z", "grpc.peer_address": "172.18.0.4:56960", "grpc.peer_subject": "CN=peer1.org1.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "178.8µs"} -peer0.org1.example.com | 2018-12-19 08:11:40.036 UTC [endorser] callChaincode -> INFO 023 [][e0c1b0fe] Entry chaincode: name:"cscc" -peer0.org1.example.com | 2018-12-19 08:11:40.039 UTC [ledgermgmt] CreateLedger -> INFO 024 Creating ledger [businesschannel] with genesis block -peer0.org1.example.com | 2018-12-19 08:11:40.043 UTC [fsblkstorage] newBlockfileMgr -> INFO 025 Getting block information from block storage -peer0.org1.example.com | 2018-12-19 08:11:40.064 UTC [kvledger] CommitWithPvtData -> INFO 026 [businesschannel] Committed block [0] with 1 transaction(s) in 15ms (state_validation=2ms block_commit=8ms state_commit=3ms) -peer0.org1.example.com | 2018-12-19 08:11:40.066 UTC [ledgermgmt] CreateLedger -> INFO 027 Created ledger [businesschannel] with genesis block -peer0.org1.example.com | 2018-12-19 08:11:40.075 UTC [gossip.gossip] JoinChan -> INFO 028 Joining gossip network of channel businesschannel with 2 organizations -peer0.org1.example.com | 2018-12-19 08:11:40.075 UTC [gossip.gossip] learnAnchorPeers -> INFO 029 No configured anchor peers of Org2MSP for channel businesschannel to learn about -peer0.org1.example.com | 2018-12-19 08:11:40.076 UTC [gossip.gossip] learnAnchorPeers -> INFO 02a No configured anchor peers of Org1MSP for channel businesschannel to learn about -peer0.org1.example.com | 2018-12-19 08:11:40.100 UTC [gossip.state] NewGossipStateProvider -> INFO 02b Updating metadata information, current ledger sequence is at = 0, next expected block is = 1 -peer0.org1.example.com | 2018-12-19 08:11:40.105 UTC [sccapi] deploySysCC -> INFO 02c system chaincode lscc/businesschannel(github.com/hyperledger/fabric/core/scc/lscc) deployed -peer0.org1.example.com | 2018-12-19 08:11:40.105 UTC [cscc] Init -> INFO 02d Init CSCC -peer0.org1.example.com | 2018-12-19 08:11:40.106 UTC [sccapi] deploySysCC -> INFO 02e system chaincode cscc/businesschannel(github.com/hyperledger/fabric/core/scc/cscc) deployed -peer0.org1.example.com | 2018-12-19 08:11:40.106 UTC [qscc] Init -> INFO 02f Init QSCC -peer0.org1.example.com | 2018-12-19 08:11:40.107 UTC [sccapi] deploySysCC -> INFO 030 system chaincode qscc/businesschannel(github.com/hyperledger/fabric/core/scc/qscc) deployed -peer0.org1.example.com | 2018-12-19 08:11:40.108 UTC [sccapi] deploySysCC -> INFO 031 system chaincode +lifecycle/businesschannel(github.com/hyperledger/fabric/core/chaincode/lifecycle) deployed -peer0.org1.example.com | 2018-12-19 08:11:40.109 UTC [endorser] callChaincode -> INFO 032 [][e0c1b0fe] Exit chaincode: name:"cscc" (72ms) -peer0.org1.example.com | 2018-12-19 08:11:40.109 UTC [comm.grpc.server] 1 -> INFO 033 unary call completed {"grpc.start_time": "2018-12-19T08:11:40.034Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.18.0.3:56200", "grpc.code": "OK", "grpc.call_duration": "75.3186ms"} -peer0.org1.example.com | 2018-12-19 08:11:41.410 UTC [endorser] callChaincode -> INFO 034 [][d601226d] Entry chaincode: name:"cscc" -peer0.org1.example.com | 2018-12-19 08:11:41.411 UTC [endorser] callChaincode -> INFO 035 [][d601226d] Exit chaincode: name:"cscc" (1ms) -peer0.org1.example.com | 2018-12-19 08:11:41.412 UTC [comm.grpc.server] 1 -> INFO 036 unary call completed {"grpc.start_time": "2018-12-19T08:11:41.41Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.18.0.3:56208", "grpc.code": "OK", "grpc.call_duration": "1.9299ms"} -peer0.org1.example.com | 2018-12-19 08:11:42.440 UTC [endorser] callChaincode -> INFO 037 [][105bde83] Entry chaincode: name:"qscc" -peer0.org1.example.com | 2018-12-19 08:11:42.442 UTC [endorser] callChaincode -> INFO 038 [][105bde83] Exit chaincode: name:"qscc" (2ms) -peer0.org1.example.com | 2018-12-19 08:11:42.443 UTC [comm.grpc.server] 1 -> INFO 039 unary call completed {"grpc.start_time": "2018-12-19T08:11:42.439Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.18.0.3:56216", "grpc.code": "OK", "grpc.call_duration": "4.581ms"} -peer0.org1.example.com | 2018-12-19 08:11:45.077 UTC [gossip.channel] reportMembershipChanges -> INFO 03a Membership view has changed. peers went online: [[peer1.org1.example.com:7051]] , current view: [[peer1.org1.example.com:7051]] -peer0.org1.example.com | 2018-12-19 08:11:46.105 UTC [gossip.election] beLeader -> INFO 03b 3d21b0bc142d8ddae3c27797c0c2bf16b05e0414b227484fdbfabf9859231106 : Becoming a leader -peer0.org1.example.com | 2018-12-19 08:11:46.106 UTC [gossip.service] func1 -> INFO 03c Elected as a leader, starting delivery service for channel businesschannel -peer0.org1.example.com | 2018-12-19 08:11:46.121 UTC [gossip.privdata] StoreBlock -> INFO 03d [businesschannel] Received block [1] from buffer -peer0.org1.example.com | 2018-12-19 08:11:46.151 UTC [gossip.gossip] JoinChan -> INFO 03e Joining gossip network of channel businesschannel with 2 organizations -peer0.org1.example.com | 2018-12-19 08:11:46.151 UTC [gossip.gossip] learnAnchorPeers -> INFO 03f No configured anchor peers of Org2MSP for channel businesschannel to learn about -peer0.org1.example.com | 2018-12-19 08:11:46.151 UTC [gossip.gossip] learnAnchorPeers -> INFO 040 Learning about the configured anchor peers of Org1MSP for channel businesschannel : [{peer0.org1.example.com 7051}] -peer0.org1.example.com | 2018-12-19 08:11:46.151 UTC [gossip.gossip] learnAnchorPeers -> INFO 041 Anchor peer with same endpoint, skipping connecting to myself -peer0.org1.example.com | 2018-12-19 08:11:46.169 UTC [committer.txvalidator] Validate -> INFO 042 [businesschannel] Validated block [1] in 47ms -peer0.org1.example.com | 2018-12-19 08:11:46.196 UTC [comm.grpc.server] 1 -> INFO 043 unary call completed {"grpc.start_time": "2018-12-19T08:11:46.196Z", "grpc.service": "gossip.Gossip", "grpc.method": "Ping", "grpc.request_deadline": "2018-12-19T08:11:48.195Z", "grpc.peer_address": "172.18.0.4:57006", "grpc.peer_subject": "CN=peer1.org1.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "135.3µs"} -peer0.org1.example.com | 2018-12-19 08:11:46.197 UTC [kvledger] CommitWithPvtData -> INFO 044 [businesschannel] Committed block [1] with 1 transaction(s) in 27ms (state_validation=1ms block_commit=18ms state_commit=4ms) -peer0.org1.example.com | 2018-12-19 08:11:46.198 UTC [gossip.privdata] StoreBlock -> INFO 045 [businesschannel] Received block [2] from buffer -peer0.org1.example.com | 2018-12-19 08:11:46.213 UTC [comm.grpc.server] 1 -> INFO 046 streaming call completed {"grpc.start_time": "2018-12-19T08:11:36.924Z", "grpc.service": "gossip.Gossip", "grpc.method": "GossipStream", "grpc.peer_address": "172.18.0.4:56960", "grpc.peer_subject": "CN=peer1.org1.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "9.2887272s"} -peer0.org1.example.com | 2018-12-19 08:11:46.216 UTC [comm.grpc.server] 1 -> INFO 047 streaming call completed {"grpc.start_time": "2018-12-19T08:11:46.211Z", "grpc.service": "gossip.Gossip", "grpc.method": "GossipStream", "grpc.request_deadline": "2018-12-19T08:11:56.2Z", "grpc.peer_address": "172.18.0.4:57006", "grpc.peer_subject": "CN=peer1.org1.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "4.8086ms"} -peer0.org1.example.com | 2018-12-19 08:11:46.217 UTC [gossip.gossip] JoinChan -> INFO 048 Joining gossip network of channel businesschannel with 2 organizations -peer0.org1.example.com | 2018-12-19 08:11:46.217 UTC [gossip.gossip] learnAnchorPeers -> INFO 049 Learning about the configured anchor peers of Org1MSP for channel businesschannel : [{peer0.org1.example.com 7051}] -peer0.org1.example.com | 2018-12-19 08:11:46.217 UTC [gossip.gossip] learnAnchorPeers -> INFO 04a Anchor peer with same endpoint, skipping connecting to myself -peer0.org1.example.com | 2018-12-19 08:11:46.218 UTC [gossip.gossip] learnAnchorPeers -> INFO 04b Learning about the configured anchor peers of Org2MSP for channel businesschannel : [{peer0.org2.example.com 7051}] -peer0.org1.example.com | 2018-12-19 08:11:46.236 UTC [committer.txvalidator] Validate -> INFO 04c [businesschannel] Validated block [2] in 38ms -peer0.org1.example.com | 2018-12-19 08:11:46.281 UTC [kvledger] CommitWithPvtData -> INFO 04d [businesschannel] Committed block [2] with 1 transaction(s) in 40ms (state_validation=7ms block_commit=28ms state_commit=2ms) -peer0.org1.example.com | 2018-12-19 08:11:46.336 UTC [comm.grpc.server] 1 -> INFO 04e unary call completed {"grpc.start_time": "2018-12-19T08:11:46.336Z", "grpc.service": "gossip.Gossip", "grpc.method": "Ping", "grpc.request_deadline": "2018-12-19T08:11:48.336Z", "grpc.peer_address": "172.18.0.4:57014", "grpc.peer_subject": "CN=peer1.org1.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "123.3µs"} -peer0.org1.example.com | 2018-12-19 08:11:46.346 UTC [comm.grpc.server] 1 -> INFO 04f streaming call completed {"grpc.start_time": "2018-12-19T08:11:46.339Z", "grpc.service": "gossip.Gossip", "grpc.method": "GossipStream", "grpc.request_deadline": "2018-12-19T08:11:56.338Z", "grpc.peer_address": "172.18.0.4:57014", "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": "7.5547ms"} -peer0.org1.example.com | 2018-12-19 08:11:46.697 UTC [comm.grpc.server] 1 -> INFO 050 unary call completed {"grpc.start_time": "2018-12-19T08:11:46.697Z", "grpc.service": "gossip.Gossip", "grpc.method": "Ping", "grpc.request_deadline": "2018-12-19T08:11:48.696Z", "grpc.peer_address": "172.18.0.4:57026", "grpc.peer_subject": "CN=peer1.org1.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "189.5µs"} -peer0.org1.example.com | 2018-12-19 08:11:46.720 UTC [comm.grpc.server] 1 -> INFO 051 streaming call completed {"grpc.start_time": "2018-12-19T08:11:46.713Z", "grpc.service": "gossip.Gossip", "grpc.method": "GossipStream", "grpc.peer_address": "172.18.0.4:57026", "grpc.peer_subject": "CN=peer1.org1.example.com,L=San Francisco,ST=California,C=US", "error": "EOF", "grpc.code": "Unknown", "grpc.call_duration": "6.8017ms"} -peer0.org1.example.com | 2018-12-19 08:11:46.751 UTC [comm.grpc.server] 1 -> INFO 052 unary call completed {"grpc.start_time": "2018-12-19T08:11:46.75Z", "grpc.service": "gossip.Gossip", "grpc.method": "Ping", "grpc.request_deadline": "2018-12-19T08:11:48.748Z", "grpc.peer_address": "172.18.0.6:55698", "grpc.peer_subject": "CN=peer0.org2.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "1.357ms"} -peer0.org1.example.com | 2018-12-19 08:11:46.768 UTC [comm.grpc.server] 1 -> INFO 053 streaming call completed {"grpc.start_time": "2018-12-19T08:11:46.755Z", "grpc.service": "gossip.Gossip", "grpc.method": "GossipStream", "grpc.request_deadline": "2018-12-19T08:11:56.754Z", "grpc.peer_address": "172.18.0.6:55698", "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": "13.7156ms"} -peer0.org1.example.com | 2018-12-19 08:11:46.780 UTC [comm.grpc.server] 1 -> INFO 054 unary call completed {"grpc.start_time": "2018-12-19T08:11:46.78Z", "grpc.service": "gossip.Gossip", "grpc.method": "Ping", "grpc.request_deadline": "2018-12-19T08:11:48.779Z", "grpc.peer_address": "172.18.0.5:48688", "grpc.peer_subject": "CN=peer1.org2.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "246.3µs"} -peer0.org1.example.com | 2018-12-19 08:11:46.780 UTC [comm.grpc.server] 1 -> INFO 055 unary call completed {"grpc.start_time": "2018-12-19T08:11:46.78Z", "grpc.service": "gossip.Gossip", "grpc.method": "Ping", "grpc.request_deadline": "2018-12-19T08:11:48.78Z", "grpc.peer_address": "172.18.0.6:55702", "grpc.peer_subject": "CN=peer0.org2.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "200.3µs"} -peer0.org1.example.com | 2018-12-19 08:11:46.795 UTC [comm.grpc.server] 1 -> INFO 056 streaming call completed {"grpc.start_time": "2018-12-19T08:11:46.783Z", "grpc.service": "gossip.Gossip", "grpc.method": "GossipStream", "grpc.request_deadline": "2018-12-19T08:11:56.783Z", "grpc.peer_address": "172.18.0.5:48688", "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": "12.1758ms"} -peer0.org1.example.com | 2018-12-19 08:11:46.825 UTC [comm.grpc.server] 1 -> INFO 057 unary call completed {"grpc.start_time": "2018-12-19T08:11:46.825Z", "grpc.service": "gossip.Gossip", "grpc.method": "Ping", "grpc.request_deadline": "2018-12-19T08:11:48.825Z", "grpc.peer_address": "172.18.0.6:55704", "grpc.peer_subject": "CN=peer0.org2.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "158.5µs"} -peer0.org1.example.com | 2018-12-19 08:11:46.830 UTC [comm.grpc.server] 1 -> INFO 058 streaming call completed {"grpc.start_time": "2018-12-19T08:11:46.789Z", "grpc.service": "gossip.Gossip", "grpc.method": "GossipStream", "grpc.peer_address": "172.18.0.6:55702", "grpc.peer_subject": "CN=peer0.org2.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "41.2196ms"} -peer0.org1.example.com | 2018-12-19 08:11:46.830 UTC [comm.grpc.server] 1 -> INFO 059 streaming call completed {"grpc.start_time": "2018-12-19T08:11:46.827Z", "grpc.service": "gossip.Gossip", "grpc.method": "GossipStream", "grpc.request_deadline": "2018-12-19T08:11:56.827Z", "grpc.peer_address": "172.18.0.6:55704", "grpc.peer_subject": "CN=peer0.org2.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "3.0167ms"} -peer0.org1.example.com | 2018-12-19 08:11:46.865 UTC [comm.grpc.server] 1 -> INFO 05a unary call completed {"grpc.start_time": "2018-12-19T08:11:46.865Z", "grpc.service": "gossip.Gossip", "grpc.method": "Ping", "grpc.request_deadline": "2018-12-19T08:11:48.863Z", "grpc.peer_address": "172.18.0.5:48696", "grpc.peer_subject": "CN=peer1.org2.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "136.5µs"} -peer0.org1.example.com | 2018-12-19 08:11:46.873 UTC [comm.grpc.server] 1 -> INFO 05b streaming call completed {"grpc.start_time": "2018-12-19T08:11:46.867Z", "grpc.service": "gossip.Gossip", "grpc.method": "GossipStream", "grpc.request_deadline": "2018-12-19T08:11:56.867Z", "grpc.peer_address": "172.18.0.5:48696", "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": "5.5626ms"} -peer0.org1.example.com | 2018-12-19 08:11:46.913 UTC [comm.grpc.server] 1 -> INFO 05c unary call completed {"grpc.start_time": "2018-12-19T08:11:46.913Z", "grpc.service": "gossip.Gossip", "grpc.method": "Ping", "grpc.request_deadline": "2018-12-19T08:11:48.913Z", "grpc.peer_address": "172.18.0.5:48700", "grpc.peer_subject": "CN=peer1.org2.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "111.7µs"} -peer0.org1.example.com | 2018-12-19 08:11:46.929 UTC [comm.grpc.server] 1 -> INFO 05d unary call completed {"grpc.start_time": "2018-12-19T08:11:46.929Z", "grpc.service": "gossip.Gossip", "grpc.method": "Ping", "grpc.request_deadline": "2018-12-19T08:11:48.929Z", "grpc.peer_address": "172.18.0.6:55716", "grpc.peer_subject": "CN=peer0.org2.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "169.5µs"} -peer0.org1.example.com | 2018-12-19 08:11:46.953 UTC [comm.grpc.server] 1 -> INFO 05e streaming call completed {"grpc.start_time": "2018-12-19T08:11:46.934Z", "grpc.service": "gossip.Gossip", "grpc.method": "GossipStream", "grpc.peer_address": "172.18.0.6:55716", "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": "18.5126ms"} -peer0.org1.example.com | 2018-12-19 08:11:46.957 UTC [comm.grpc.server] 1 -> INFO 05f streaming call completed {"grpc.start_time": "2018-12-19T08:11:46.932Z", "grpc.service": "gossip.Gossip", "grpc.method": "GossipStream", "grpc.peer_address": "172.18.0.5:48700", "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": "24.3593ms"} -peer0.org1.example.com | 2018-12-19 08:11:50.076 UTC [gossip.channel] reportMembershipChanges -> INFO 060 Membership view has changed. peers went online: [[peer1.org2.example.com:7051 ] [peer0.org2.example.com:7051 ]] , current view: [[peer1.org1.example.com:7051] [peer1.org2.example.com:7051 ] [peer0.org2.example.com:7051 ]] -peer0.org1.example.com | 2018-12-19 08:11:50.136 UTC [endorser] callChaincode -> INFO 061 [][11597d39] Entry chaincode: name:"lscc" -peer0.org1.example.com | 2018-12-19 08:11:50.138 UTC [lscc] executeInstall -> INFO 062 Installed Chaincode [exp02] Version [1.0] to peer -peer0.org1.example.com | 2018-12-19 08:11:50.138 UTC [endorser] callChaincode -> INFO 063 [][11597d39] Exit chaincode: name:"lscc" (2ms) -peer0.org1.example.com | 2018-12-19 08:11:50.139 UTC [comm.grpc.server] 1 -> INFO 064 unary call completed {"grpc.start_time": "2018-12-19T08:11:50.136Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.18.0.3:56280", "grpc.code": "OK", "grpc.call_duration": "3.0639ms"} -peer0.org1.example.com | 2018-12-19 08:11:54.727 UTC [endorser] callChaincode -> INFO 065 [businesschannel][a605b361] Entry chaincode: name:"lscc" -peer0.org1.example.com | 2018-12-19 08:11:54.743 UTC [chaincode.platform.golang] GenerateDockerBuild -> INFO 066 building chaincode with ldflagsOpt: '-ldflags "-linkmode external -extldflags '-static'"' -peer0.org1.example.com | 2018-12-19 08:12:39.954 UTC [endorser] callChaincode -> INFO 067 [businesschannel][a605b361] Exit chaincode: name:"lscc" (45298ms) -peer0.org1.example.com | 2018-12-19 08:12:39.956 UTC [comm.grpc.server] 1 -> INFO 068 unary call completed {"grpc.start_time": "2018-12-19T08:11:54.725Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.18.0.3:56296", "grpc.code": "OK", "grpc.call_duration": "45.3005385s"} -peer0.org1.example.com | 2018-12-19 08:12:41.974 UTC [gossip.privdata] StoreBlock -> INFO 069 [businesschannel] Received block [3] from buffer -peer0.org1.example.com | 2018-12-19 08:12:42.006 UTC [committer.txvalidator] Validate -> INFO 06a [businesschannel] Validated block [3] in 31ms -peer0.org1.example.com | 2018-12-19 08:12:42.010 UTC [cceventmgmt] HandleStateUpdates -> INFO 06b Channel [businesschannel]: Handling deploy or update of chaincode [exp02] -peer0.org1.example.com | 2018-12-19 08:12:42.041 UTC [kvledger] CommitWithPvtData -> INFO 06c [businesschannel] Committed block [3] with 1 transaction(s) in 31ms (state_validation=1ms block_commit=19ms state_commit=4ms) -peer0.org1.example.com | 2018-12-19 08:13:29.893 UTC [endorser] callChaincode -> INFO 06d [businesschannel][06c886de] Entry chaincode: name:"exp02" -peer0.org1.example.com | 2018-12-19 08:13:29.902 UTC [endorser] callChaincode -> INFO 06e [businesschannel][06c886de] Exit chaincode: name:"exp02" (9ms) -peer0.org1.example.com | 2018-12-19 08:13:29.903 UTC [comm.grpc.server] 1 -> INFO 06f unary call completed {"grpc.start_time": "2018-12-19T08:13:29.891Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.18.0.3:56314", "grpc.code": "OK", "grpc.call_duration": "11.5393ms"} -peer0.org1.example.com | 2018-12-19 08:13:31.935 UTC [gossip.privdata] StoreBlock -> INFO 070 [businesschannel] Received block [4] from buffer -peer0.org1.example.com | 2018-12-19 08:13:31.971 UTC [committer.txvalidator] Validate -> INFO 071 [businesschannel] Validated block [4] in 35ms -peer0.org1.example.com | 2018-12-19 08:13:32.005 UTC [kvledger] CommitWithPvtData -> INFO 072 [businesschannel] Committed block [4] with 1 transaction(s) in 32ms (state_validation=1ms block_commit=23ms state_commit=6ms) -peer0.org1.example.com | 2018-12-19 08:13:34.889 UTC [endorser] callChaincode -> INFO 073 [businesschannel][0eff2a99] Entry chaincode: name:"exp02" -peer0.org1.example.com | 2018-12-19 08:13:34.892 UTC [endorser] callChaincode -> INFO 074 [businesschannel][0eff2a99] Exit chaincode: name:"exp02" (4ms) -peer0.org1.example.com | 2018-12-19 08:13:34.895 UTC [comm.grpc.server] 1 -> INFO 075 unary call completed {"grpc.start_time": "2018-12-19T08:13:34.887Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.18.0.3:56334", "grpc.code": "OK", "grpc.call_duration": "8.5669ms"} -peer0.org1.example.com | 2018-12-19 08:13:36.339 UTC [gossip.privdata] StoreBlock -> INFO 076 [businesschannel] Received block [5] from buffer -peer0.org1.example.com | 2018-12-19 08:13:36.552 UTC [committer.txvalidator] Validate -> INFO 077 [businesschannel] Validated block [5] in 209ms -peer0.org1.example.com | 2018-12-19 08:13:36.680 UTC [kvledger] CommitWithPvtData -> INFO 078 [businesschannel] Committed block [5] with 1 transaction(s) in 126ms (state_validation=0ms block_commit=113ms state_commit=4ms) -peer0.org1.example.com | 2018-12-19 08:13:37.335 UTC [endorser] callChaincode -> INFO 079 [businesschannel][fcf11a3c] Entry chaincode: name:"exp02" -peer0.org1.example.com | 2018-12-19 08:13:37.340 UTC [endorser] callChaincode -> INFO 07a [businesschannel][fcf11a3c] Exit chaincode: name:"exp02" (4ms) -peer0.org1.example.com | 2018-12-19 08:13:37.342 UTC [comm.grpc.server] 1 -> INFO 07b unary call completed {"grpc.start_time": "2018-12-19T08:13:37.333Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.18.0.3:56338", "grpc.code": "OK", "grpc.call_duration": "8.9383ms"} -peer0.org1.example.com | 2018-12-19 08:13:38.349 UTC [endorser] callChaincode -> INFO 07c [businesschannel][3887efc9] Entry chaincode: name:"lscc" -peer0.org1.example.com | 2018-12-19 08:13:38.352 UTC [endorser] callChaincode -> INFO 07d [businesschannel][3887efc9] Exit chaincode: name:"lscc" (3ms) -peer0.org1.example.com | 2018-12-19 08:13:38.368 UTC [comm.grpc.server] 1 -> INFO 07e unary call completed {"grpc.start_time": "2018-12-19T08:13:38.348Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.18.0.3:56342", "grpc.code": "OK", "grpc.call_duration": "19.6932ms"} -peer0.org1.example.com | 2018-12-19 08:13:38.658 UTC [endorser] callChaincode -> INFO 07f [businesschannel][01382c1f] Entry chaincode: name:"lscc" -peer0.org1.example.com | 2018-12-19 08:13:38.661 UTC [endorser] callChaincode -> INFO 080 [businesschannel][01382c1f] Exit chaincode: name:"lscc" (2ms) -peer0.org1.example.com | 2018-12-19 08:13:38.662 UTC [comm.grpc.server] 1 -> INFO 081 unary call completed {"grpc.start_time": "2018-12-19T08:13:38.657Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.18.0.3:56346", "grpc.code": "OK", "grpc.call_duration": "5.4865ms"} -peer0.org1.example.com | 2018-12-19 08:13:38.930 UTC [endorser] callChaincode -> INFO 082 [businesschannel][c80109d5] Entry chaincode: name:"lscc" -peer0.org1.example.com | 2018-12-19 08:13:38.932 UTC [endorser] callChaincode -> INFO 083 [businesschannel][c80109d5] Exit chaincode: name:"lscc" (2ms) -peer0.org1.example.com | 2018-12-19 08:13:38.933 UTC [comm.grpc.server] 1 -> INFO 084 unary call completed {"grpc.start_time": "2018-12-19T08:13:38.929Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.18.0.3:56350", "grpc.code": "OK", "grpc.call_duration": "3.8826ms"} -peer0.org1.example.com | 2018-12-19 08:13:39.254 UTC [endorser] callChaincode -> INFO 085 [businesschannel][e391e116] Entry chaincode: name:"lscc" -peer0.org1.example.com | 2018-12-19 08:13:39.255 UTC [endorser] callChaincode -> INFO 086 [businesschannel][e391e116] Exit chaincode: name:"lscc" (1ms) -peer0.org1.example.com | 2018-12-19 08:13:39.256 UTC [comm.grpc.server] 1 -> INFO 087 unary call completed {"grpc.start_time": "2018-12-19T08:13:39.253Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.18.0.3:56354", "grpc.code": "OK", "grpc.call_duration": "3.524ms"} -peer0.org1.example.com | 2018-12-19 08:13:39.647 UTC [endorser] callChaincode -> INFO 088 [businesschannel][650d8dfd] Entry chaincode: name:"lscc" -peer0.org1.example.com | 2018-12-19 08:13:39.649 UTC [endorser] callChaincode -> INFO 089 [businesschannel][650d8dfd] Exit chaincode: name:"lscc" (2ms) -peer0.org1.example.com | 2018-12-19 08:13:39.649 UTC [comm.grpc.server] 1 -> INFO 08a unary call completed {"grpc.start_time": "2018-12-19T08:13:39.646Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.18.0.3:56358", "grpc.code": "OK", "grpc.call_duration": "3.5105ms"} -peer0.org1.example.com | 2018-12-19 08:13:40.392 UTC [endorser] callChaincode -> INFO 08b [businesschannel][86cae698] Entry chaincode: name:"qscc" -peer0.org1.example.com | 2018-12-19 08:13:40.394 UTC [endorser] callChaincode -> INFO 08c [businesschannel][86cae698] Exit chaincode: name:"qscc" (1ms) -peer0.org1.example.com | 2018-12-19 08:13:40.395 UTC [comm.grpc.server] 1 -> INFO 08d unary call completed {"grpc.start_time": "2018-12-19T08:13:40.391Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.18.0.3:56362", "grpc.code": "OK", "grpc.call_duration": "3.971ms"} -peer0.org1.example.com | 2018-12-19 08:13:40.675 UTC [endorser] callChaincode -> INFO 08e [businesschannel][10b5b899] Entry chaincode: name:"qscc" -peer0.org1.example.com | 2018-12-19 08:13:40.861 UTC [endorser] callChaincode -> INFO 08f [businesschannel][10b5b899] Exit chaincode: name:"qscc" (184ms) -peer0.org1.example.com | 2018-12-19 08:13:40.899 UTC [comm.grpc.server] 1 -> INFO 090 unary call completed {"grpc.start_time": "2018-12-19T08:13:40.672Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.18.0.3:56366", "grpc.code": "OK", "grpc.call_duration": "226.6949ms"} -peer0.org1.example.com | 2018-12-19 08:13:41.982 UTC [endorser] callChaincode -> INFO 091 [businesschannel][03e94530] Entry chaincode: name:"cscc" -peer0.org1.example.com | 2018-12-19 08:13:41.985 UTC [endorser] callChaincode -> INFO 092 [businesschannel][03e94530] Exit chaincode: name:"cscc" (3ms) -peer0.org1.example.com | 2018-12-19 08:13:41.986 UTC [comm.grpc.server] 1 -> INFO 093 unary call completed {"grpc.start_time": "2018-12-19T08:13:41.981Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.18.0.3:56370", "grpc.code": "OK", "grpc.call_duration": "5.0576ms"} -peer0.org1.example.com | 2018-12-19 08:13:42.222 UTC [endorser] callChaincode -> INFO 094 [businesschannel][984943dd] Entry chaincode: name:"cscc" -peer0.org1.example.com | 2018-12-19 08:13:42.223 UTC [endorser] callChaincode -> INFO 095 [businesschannel][984943dd] Exit chaincode: name:"cscc" (1ms) -peer0.org1.example.com | 2018-12-19 08:13:42.224 UTC [comm.grpc.server] 1 -> INFO 096 unary call completed {"grpc.start_time": "2018-12-19T08:13:42.221Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.18.0.3:56374", "grpc.code": "OK", "grpc.call_duration": "2.777ms"} -peer0.org1.example.com | 2018-12-19 08:13:42.616 UTC [endorser] callChaincode -> INFO 097 [businesschannel][b8f33e17] Entry chaincode: name:"cscc" -peer0.org1.example.com | 2018-12-19 08:13:42.618 UTC [endorser] callChaincode -> INFO 098 [businesschannel][b8f33e17] Exit chaincode: name:"cscc" (1ms) -peer0.org1.example.com | 2018-12-19 08:13:42.618 UTC [comm.grpc.server] 1 -> INFO 099 unary call completed {"grpc.start_time": "2018-12-19T08:13:42.615Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.18.0.3:56378", "grpc.code": "OK", "grpc.call_duration": "3.2781ms"} -peer0.org1.example.com | 2018-12-19 08:13:55.862 UTC [gossip.privdata] StoreBlock -> INFO 09a [businesschannel] Received block [6] from buffer -peer0.org1.example.com | 2018-12-19 08:13:55.873 UTC [cauthdsl] deduplicate -> WARN 09b De-duplicating identity [Org1MSP0270edfed53a78d7d3c66dc25737f57f956e48ef69dca5ecc91c26679dd4eff3] at index 2 in signature set -peer0.org1.example.com | 2018-12-19 08:13:55.881 UTC [cauthdsl] deduplicate -> WARN 09c De-duplicating identity [Org1MSP0270edfed53a78d7d3c66dc25737f57f956e48ef69dca5ecc91c26679dd4eff3] at index 2 in signature set -peer0.org1.example.com | 2018-12-19 08:13:55.917 UTC [comm.grpc.server] 1 -> INFO 09d unary call completed {"grpc.start_time": "2018-12-19T08:13:55.916Z", "grpc.service": "gossip.Gossip", "grpc.method": "Ping", "grpc.request_deadline": "2018-12-19T08:13:57.916Z", "grpc.peer_address": "172.18.0.4:57182", "grpc.peer_subject": "CN=peer1.org1.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "233.6µs"} -peer0.org1.example.com | 2018-12-19 08:13:55.986 UTC [comm.grpc.server] 1 -> INFO 09e streaming call completed {"grpc.start_time": "2018-12-19T08:13:55.931Z", "grpc.service": "gossip.Gossip", "grpc.method": "GossipStream", "grpc.request_deadline": "2018-12-19T08:14:05.93Z", "grpc.peer_address": "172.18.0.4:57182", "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": "55.8762ms"} -peer0.org1.example.com | 2018-12-19 08:13:56.020 UTC [comm.grpc.server] 1 -> INFO 09f unary call completed {"grpc.start_time": "2018-12-19T08:13:56.02Z", "grpc.service": "gossip.Gossip", "grpc.method": "Ping", "grpc.request_deadline": "2018-12-19T08:13:58.019Z", "grpc.peer_address": "172.18.0.6:55858", "grpc.peer_subject": "CN=peer0.org2.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "167µs"} -peer0.org1.example.com | 2018-12-19 08:13:56.022 UTC [comm.grpc.server] 1 -> INFO 0a0 unary call completed {"grpc.start_time": "2018-12-19T08:13:56.021Z", "grpc.service": "gossip.Gossip", "grpc.method": "Ping", "grpc.request_deadline": "2018-12-19T08:13:58.021Z", "grpc.peer_address": "172.18.0.5:48844", "grpc.peer_subject": "CN=peer1.org2.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "115.9µs"} -peer0.org1.example.com | 2018-12-19 08:13:56.057 UTC [comm.grpc.server] 1 -> INFO 0a1 streaming call completed {"grpc.start_time": "2018-12-19T08:13:56.04Z", "grpc.service": "gossip.Gossip", "grpc.method": "GossipStream", "grpc.request_deadline": "2018-12-19T08:14:06.039Z", "grpc.peer_address": "172.18.0.5:48844", "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": "16.824ms"} -peer0.org1.example.com | 2018-12-19 08:13:56.064 UTC [gossip.gossip] JoinChan -> INFO 0a2 Joining gossip network of channel businesschannel with 3 organizations -peer0.org1.example.com | 2018-12-19 08:13:56.065 UTC [gossip.gossip] learnAnchorPeers -> INFO 0a3 No configured anchor peers of Org3MSP for channel businesschannel to learn about -peer0.org1.example.com | 2018-12-19 08:13:56.065 UTC [gossip.gossip] learnAnchorPeers -> INFO 0a4 Learning about the configured anchor peers of Org1MSP for channel businesschannel : [{peer0.org1.example.com 7051}] -peer0.org1.example.com | 2018-12-19 08:13:56.066 UTC [gossip.gossip] learnAnchorPeers -> INFO 0a5 Anchor peer with same endpoint, skipping connecting to myself -peer0.org1.example.com | 2018-12-19 08:13:56.067 UTC [gossip.gossip] learnAnchorPeers -> INFO 0a6 Learning about the configured anchor peers of Org2MSP for channel businesschannel : [{peer0.org2.example.com 7051}] -peer0.org1.example.com | 2018-12-19 08:13:56.085 UTC [committer.txvalidator] Validate -> INFO 0a7 [businesschannel] Validated block [6] in 221ms -peer0.org1.example.com | 2018-12-19 08:13:56.087 UTC [comm.grpc.server] 1 -> INFO 0a8 streaming call completed {"grpc.start_time": "2018-12-19T08:13:56.058Z", "grpc.service": "gossip.Gossip", "grpc.method": "GossipStream", "grpc.request_deadline": "2018-12-19T08:14:06.058Z", "grpc.peer_address": "172.18.0.6:55858", "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": "29.2046ms"} -peer0.org1.example.com | 2018-12-19 08:13:56.090 UTC [comm.grpc.server] 1 -> INFO 0a9 unary call completed {"grpc.start_time": "2018-12-19T08:13:56.089Z", "grpc.service": "gossip.Gossip", "grpc.method": "Ping", "grpc.request_deadline": "2018-12-19T08:13:58.089Z", "grpc.peer_address": "172.18.0.5:48852", "grpc.peer_subject": "CN=peer1.org2.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "154.1µs"} -peer0.org1.example.com | 2018-12-19 08:13:56.107 UTC [comm.grpc.server] 1 -> INFO 0aa unary call completed {"grpc.start_time": "2018-12-19T08:13:56.107Z", "grpc.service": "gossip.Gossip", "grpc.method": "Ping", "grpc.request_deadline": "2018-12-19T08:13:58.107Z", "grpc.peer_address": "172.18.0.6:55866", "grpc.peer_subject": "CN=peer0.org2.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "133.7µs"} -peer0.org1.example.com | 2018-12-19 08:13:56.116 UTC [kvledger] CommitWithPvtData -> INFO 0ab [businesschannel] Committed block [6] with 1 transaction(s) in 30ms (state_validation=3ms block_commit=23ms state_commit=2ms) -peer0.org1.example.com | 2018-12-19 08:13:56.143 UTC [comm.grpc.server] 1 -> INFO 0ac streaming call completed {"grpc.start_time": "2018-12-19T08:13:56.121Z", "grpc.service": "gossip.Gossip", "grpc.method": "GossipStream", "grpc.peer_address": "172.18.0.6:55866", "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.9251ms"} -peer0.org1.example.com | 2018-12-19 08:14:14.473 UTC [endorser] callChaincode -> INFO 0ad [][f82208e7] Entry chaincode: name:"cscc" -peer0.org1.example.com | 2018-12-19 08:14:14.474 UTC [endorser] callChaincode -> INFO 0ae [][f82208e7] Exit chaincode: name:"cscc" (1ms) -peer0.org1.example.com | 2018-12-19 08:14:14.474 UTC [comm.grpc.server] 1 -> INFO 0af unary call completed {"grpc.start_time": "2018-12-19T08:14:14.472Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.18.0.3:56466", "grpc.code": "OK", "grpc.call_duration": "2.6178ms"} -peer0.org1.example.com | 2018-12-19 08:14:15.602 UTC [endorser] callChaincode -> INFO 0b0 [][5bfe69b4] Entry chaincode: name:"qscc" -peer0.org1.example.com | 2018-12-19 08:14:15.605 UTC [endorser] callChaincode -> INFO 0b1 [][5bfe69b4] Exit chaincode: name:"qscc" (3ms) -peer0.org1.example.com | 2018-12-19 08:14:15.605 UTC [comm.grpc.server] 1 -> INFO 0b2 unary call completed {"grpc.start_time": "2018-12-19T08:14:15.6Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.18.0.3:56474", "grpc.code": "OK", "grpc.call_duration": "4.643ms"} -peer1.org1.example.com | 2018-12-19 08:11:35.576 UTC [main] InitCmd -> WARN 001 CORE_LOGGING_LEVEL is no longer supported, please use the FABRIC_LOGGING_SPEC environment variable -peer1.org1.example.com | 2018-12-19 08:11:35.671 UTC [nodeCmd] serve -> INFO 002 Starting peer: -peer1.org1.example.com | Version: 1.4.0-rc1 -peer1.org1.example.com | Commit SHA: development build -peer1.org1.example.com | Go version: go1.11.2 -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 | 2018-12-19 08:11:35.673 UTC [ledgermgmt] initialize -> INFO 003 Initializing ledger mgmt -peer1.org1.example.com | 2018-12-19 08:11:35.673 UTC [kvledger] NewProvider -> INFO 004 Initializing ledger provider -peer1.org1.example.com | 2018-12-19 08:11:35.722 UTC [kvledger] NewProvider -> INFO 005 ledger provider Initialized -peer1.org1.example.com | 2018-12-19 08:11:35.752 UTC [ledgermgmt] initialize -> INFO 006 ledger mgmt initialized -peer1.org1.example.com | 2018-12-19 08:11:35.753 UTC [peer] func1 -> INFO 007 Auto-detected peer address: 172.18.0.4:7051 -peer1.org1.example.com | 2018-12-19 08:11:35.753 UTC [peer] func1 -> INFO 008 Returning peer1.org1.example.com:7051 -peer1.org1.example.com | 2018-12-19 08:11:35.753 UTC [peer] func1 -> INFO 009 Auto-detected peer address: 172.18.0.4:7051 -peer1.org1.example.com | 2018-12-19 08:11:35.753 UTC [peer] func1 -> INFO 00a Returning peer1.org1.example.com:7051 -peer1.org1.example.com | 2018-12-19 08:11:35.771 UTC [nodeCmd] serve -> INFO 00b Starting peer with TLS enabled -peer1.org1.example.com | 2018-12-19 08:11:35.779 UTC [nodeCmd] computeChaincodeEndpoint -> INFO 00c Entering computeChaincodeEndpoint with peerHostname: peer1.org1.example.com -peer1.org1.example.com | 2018-12-19 08:11:35.779 UTC [nodeCmd] computeChaincodeEndpoint -> INFO 00d Exit with ccEndpoint: peer1.org1.example.com:7052 -peer1.org1.example.com | 2018-12-19 08:11:35.795 UTC [sccapi] registerSysCC -> INFO 00e system chaincode lscc(github.com/hyperledger/fabric/core/scc/lscc) registered -peer1.org1.example.com | 2018-12-19 08:11:35.795 UTC [sccapi] registerSysCC -> INFO 00f system chaincode cscc(github.com/hyperledger/fabric/core/scc/cscc) registered -peer1.org1.example.com | 2018-12-19 08:11:35.795 UTC [sccapi] registerSysCC -> INFO 010 system chaincode qscc(github.com/hyperledger/fabric/core/scc/qscc) registered -peer1.org1.example.com | 2018-12-19 08:11:35.795 UTC [sccapi] registerSysCC -> INFO 011 system chaincode +lifecycle(github.com/hyperledger/fabric/core/chaincode/lifecycle) registered -peer1.org1.example.com | 2018-12-19 08:11:35.810 UTC [gossip.service] func1 -> INFO 012 Initialize gossip with endpoint peer1.org1.example.com:7051 and bootstrap set [peer0.org1.example.com:7051] -peer1.org1.example.com | 2018-12-19 08:11:35.818 UTC [gossip.gossip] NewGossipService -> INFO 013 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 | 2018-12-19 08:11:35.820 UTC [gossip.gossip] start -> INFO 014 Gossip instance peer1.org1.example.com:7051 started -peer1.org1.example.com | 2018-12-19 08:11:35.831 UTC [sccapi] deploySysCC -> INFO 015 system chaincode lscc/(github.com/hyperledger/fabric/core/scc/lscc) deployed -peer1.org1.example.com | 2018-12-19 08:11:35.833 UTC [cscc] Init -> INFO 016 Init CSCC -peer1.org1.example.com | 2018-12-19 08:11:35.833 UTC [sccapi] deploySysCC -> INFO 017 system chaincode cscc/(github.com/hyperledger/fabric/core/scc/cscc) deployed -peer1.org1.example.com | 2018-12-19 08:11:35.834 UTC [qscc] Init -> INFO 018 Init QSCC -peer1.org1.example.com | 2018-12-19 08:11:35.835 UTC [sccapi] deploySysCC -> INFO 019 system chaincode qscc/(github.com/hyperledger/fabric/core/scc/qscc) deployed -peer1.org1.example.com | 2018-12-19 08:11:35.836 UTC [sccapi] deploySysCC -> INFO 01a system chaincode +lifecycle/(github.com/hyperledger/fabric/core/chaincode/lifecycle) deployed -peer1.org1.example.com | 2018-12-19 08:11:35.836 UTC [nodeCmd] serve -> INFO 01b Deployed system chaincodes -peer1.org1.example.com | 2018-12-19 08:11:35.838 UTC [discovery] NewService -> INFO 01c Created with config TLS: true, authCacheMaxSize: 1000, authCachePurgeRatio: 0.750000 -peer1.org1.example.com | 2018-12-19 08:11:35.838 UTC [nodeCmd] registerDiscoveryService -> INFO 01d Discovery service activated -peer1.org1.example.com | 2018-12-19 08:11:35.838 UTC [nodeCmd] serve -> INFO 01e Starting peer with ID=[name:"peer1.org1.example.com" ], network ID=[dev], address=[peer1.org1.example.com:7051] -peer1.org1.example.com | 2018-12-19 08:11:35.838 UTC [nodeCmd] serve -> INFO 01f Started peer with ID=[name:"peer1.org1.example.com" ], network ID=[dev], address=[peer1.org1.example.com:7051] -peer1.org1.example.com | 2018-12-19 08:11:40.313 UTC [endorser] callChaincode -> INFO 020 [][cb258860] Entry chaincode: name:"cscc" -peer1.org1.example.com | 2018-12-19 08:11:40.315 UTC [ledgermgmt] CreateLedger -> INFO 021 Creating ledger [businesschannel] with genesis block -peer1.org1.example.com | 2018-12-19 08:11:40.319 UTC [fsblkstorage] newBlockfileMgr -> INFO 022 Getting block information from block storage -peer1.org1.example.com | 2018-12-19 08:11:40.344 UTC [kvledger] CommitWithPvtData -> INFO 023 [businesschannel] Committed block [0] with 1 transaction(s) in 17ms (state_validation=1ms block_commit=9ms state_commit=3ms) -peer1.org1.example.com | 2018-12-19 08:11:40.347 UTC [ledgermgmt] CreateLedger -> INFO 024 Created ledger [businesschannel] with genesis block -peer1.org1.example.com | 2018-12-19 08:11:40.362 UTC [gossip.gossip] JoinChan -> INFO 025 Joining gossip network of channel businesschannel with 2 organizations -peer1.org1.example.com | 2018-12-19 08:11:40.363 UTC [gossip.gossip] learnAnchorPeers -> INFO 026 No configured anchor peers of Org2MSP for channel businesschannel to learn about -peer1.org1.example.com | 2018-12-19 08:11:40.363 UTC [gossip.gossip] learnAnchorPeers -> INFO 027 No configured anchor peers of Org1MSP for channel businesschannel to learn about -peer1.org1.example.com | 2018-12-19 08:11:40.382 UTC [gossip.state] NewGossipStateProvider -> INFO 028 Updating metadata information, current ledger sequence is at = 0, next expected block is = 1 -peer1.org1.example.com | 2018-12-19 08:11:40.384 UTC [sccapi] deploySysCC -> INFO 029 system chaincode lscc/businesschannel(github.com/hyperledger/fabric/core/scc/lscc) deployed -peer1.org1.example.com | 2018-12-19 08:11:40.385 UTC [cscc] Init -> INFO 02a Init CSCC -peer1.org1.example.com | 2018-12-19 08:11:40.386 UTC [sccapi] deploySysCC -> INFO 02b system chaincode cscc/businesschannel(github.com/hyperledger/fabric/core/scc/cscc) deployed -peer1.org1.example.com | 2018-12-19 08:11:40.386 UTC [qscc] Init -> INFO 02c Init QSCC -peer1.org1.example.com | 2018-12-19 08:11:40.386 UTC [sccapi] deploySysCC -> INFO 02d system chaincode qscc/businesschannel(github.com/hyperledger/fabric/core/scc/qscc) deployed -peer1.org1.example.com | 2018-12-19 08:11:40.387 UTC [sccapi] deploySysCC -> INFO 02e system chaincode +lifecycle/businesschannel(github.com/hyperledger/fabric/core/chaincode/lifecycle) deployed -peer1.org1.example.com | 2018-12-19 08:11:40.388 UTC [endorser] callChaincode -> INFO 02f [][cb258860] Exit chaincode: name:"cscc" (75ms) -peer1.org1.example.com | 2018-12-19 08:11:40.389 UTC [comm.grpc.server] 1 -> INFO 030 unary call completed {"grpc.start_time": "2018-12-19T08:11:40.31Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.18.0.3:45596", "grpc.code": "OK", "grpc.call_duration": "78.7227ms"} -peer1.org1.example.com | 2018-12-19 08:11:41.577 UTC [endorser] callChaincode -> INFO 031 [][776d0f62] Entry chaincode: name:"cscc" -peer1.org1.example.com | 2018-12-19 08:11:41.578 UTC [endorser] callChaincode -> INFO 032 [][776d0f62] Exit chaincode: name:"cscc" (1ms) -peer1.org1.example.com | 2018-12-19 08:11:41.578 UTC [comm.grpc.server] 1 -> INFO 033 unary call completed {"grpc.start_time": "2018-12-19T08:11:41.576Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.18.0.3:45604", "grpc.code": "OK", "grpc.call_duration": "2.2493ms"} -peer1.org1.example.com | 2018-12-19 08:11:42.612 UTC [endorser] callChaincode -> INFO 034 [][8219edd0] Entry chaincode: name:"qscc" -peer1.org1.example.com | 2018-12-19 08:11:42.615 UTC [endorser] callChaincode -> INFO 035 [][8219edd0] Exit chaincode: name:"qscc" (2ms) -peer1.org1.example.com | 2018-12-19 08:11:42.615 UTC [comm.grpc.server] 1 -> INFO 036 unary call completed {"grpc.start_time": "2018-12-19T08:11:42.612Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.18.0.3:45612", "grpc.code": "OK", "grpc.call_duration": "3.5274ms"} -peer1.org1.example.com | 2018-12-19 08:11:45.364 UTC [gossip.channel] reportMembershipChanges -> INFO 037 Membership view has changed. peers went online: [[peer0.org1.example.com:7051]] , current view: [[peer0.org1.example.com:7051]] -peer1.org1.example.com | 2018-12-19 08:11:46.116 UTC [gossip.election] leaderElection -> INFO 038 0be1e243940145f5e3af2c865fe319e551a303f3013dd34afa09d7f05c0653ca : Some peer is already a leader -peer1.org1.example.com | 2018-12-19 08:11:46.134 UTC [gossip.privdata] StoreBlock -> INFO 039 [businesschannel] Received block [1] from buffer -peer1.org1.example.com | 2018-12-19 08:11:46.172 UTC [gossip.gossip] JoinChan -> INFO 03a Joining gossip network of channel businesschannel with 2 organizations -peer1.org1.example.com | 2018-12-19 08:11:46.173 UTC [gossip.gossip] learnAnchorPeers -> INFO 03b Learning about the configured anchor peers of Org1MSP for channel businesschannel : [{peer0.org1.example.com 7051}] -peer1.org1.example.com | 2018-12-19 08:11:46.173 UTC [gossip.gossip] learnAnchorPeers -> INFO 03c No configured anchor peers of Org2MSP for channel businesschannel to learn about -peer1.org1.example.com | 2018-12-19 08:11:46.174 UTC [gossip.service] updateEndpoints -> WARN 03d Failed to update ordering service endpoints, due to Channel with businesschannel id was not found -peer1.org1.example.com | 2018-12-19 08:11:46.215 UTC [committer.txvalidator] Validate -> INFO 03e [businesschannel] Validated block [1] in 81ms -peer1.org1.example.com | 2018-12-19 08:11:46.263 UTC [kvledger] CommitWithPvtData -> INFO 03f [businesschannel] Committed block [1] with 1 transaction(s) in 35ms (state_validation=8ms block_commit=18ms state_commit=4ms) -peer1.org1.example.com | 2018-12-19 08:11:46.264 UTC [gossip.privdata] StoreBlock -> INFO 040 [businesschannel] Received block [2] from buffer -peer1.org1.example.com | 2018-12-19 08:11:46.290 UTC [gossip.gossip] JoinChan -> INFO 041 Joining gossip network of channel businesschannel with 2 organizations -peer1.org1.example.com | 2018-12-19 08:11:46.290 UTC [gossip.gossip] learnAnchorPeers -> INFO 042 Learning about the configured anchor peers of Org2MSP for channel businesschannel : [{peer0.org2.example.com 7051}] -peer1.org1.example.com | 2018-12-19 08:11:46.290 UTC [gossip.gossip] learnAnchorPeers -> INFO 043 Learning about the configured anchor peers of Org1MSP for channel businesschannel : [{peer0.org1.example.com 7051}] -peer1.org1.example.com | 2018-12-19 08:11:46.291 UTC [gossip.service] updateEndpoints -> WARN 044 Failed to update ordering service endpoints, due to Channel with businesschannel id was not found -peer1.org1.example.com | 2018-12-19 08:11:46.318 UTC [committer.txvalidator] Validate -> INFO 045 [businesschannel] Validated block [2] in 54ms -peer1.org1.example.com | 2018-12-19 08:11:46.344 UTC [gossip.comm] func1 -> WARN 046 peer0.org1.example.com:7051, PKIid:3d21b0bc142d8ddae3c27797c0c2bf16b05e0414b227484fdbfabf9859231106 isn't responsive: EOF -peer1.org1.example.com | 2018-12-19 08:11:46.346 UTC [gossip.discovery] expireDeadMembers -> WARN 047 Entering [3d21b0bc142d8ddae3c27797c0c2bf16b05e0414b227484fdbfabf9859231106] -peer1.org1.example.com | 2018-12-19 08:11:46.347 UTC [gossip.discovery] expireDeadMembers -> WARN 048 Closing connection to Endpoint: peer0.org1.example.com:7051, InternalEndpoint: peer0.org1.example.com:7051, PKI-ID: 3d21b0bc142d8ddae3c27797c0c2bf16b05e0414b227484fdbfabf9859231106, Metadata: -peer1.org1.example.com | 2018-12-19 08:11:46.347 UTC [gossip.discovery] expireDeadMembers -> WARN 049 Exiting -peer1.org1.example.com | 2018-12-19 08:11:46.365 UTC [kvledger] CommitWithPvtData -> INFO 04a [businesschannel] Committed block [2] with 1 transaction(s) in 46ms (state_validation=11ms block_commit=24ms state_commit=7ms) -peer1.org1.example.com | 2018-12-19 08:11:46.693 UTC [comm.grpc.server] 1 -> INFO 04b unary call completed {"grpc.start_time": "2018-12-19T08:11:46.683Z", "grpc.service": "gossip.Gossip", "grpc.method": "Ping", "grpc.request_deadline": "2018-12-19T08:11:48.682Z", "grpc.peer_address": "172.18.0.7:59252", "grpc.peer_subject": "CN=peer0.org1.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "10.2055ms"} -peer1.org1.example.com | 2018-12-19 08:11:51.305 UTC [gossip.channel] reportMembershipChanges -> INFO 04c Membership view has changed. peers went online: [[peer1.org2.example.com:7051 ] [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 | 2018-12-19 08:11:52.346 UTC [endorser] callChaincode -> INFO 04d [][75bd7b82] Entry chaincode: name:"lscc" -peer1.org1.example.com | 2018-12-19 08:11:52.351 UTC [lscc] executeInstall -> INFO 04e Installed Chaincode [exp02] Version [1.0] to peer -peer1.org1.example.com | 2018-12-19 08:11:52.359 UTC [endorser] callChaincode -> INFO 04f [][75bd7b82] Exit chaincode: name:"lscc" (13ms) -peer1.org1.example.com | 2018-12-19 08:11:52.359 UTC [comm.grpc.server] 1 -> INFO 050 unary call completed {"grpc.start_time": "2018-12-19T08:11:52.317Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.18.0.3:45678", "grpc.code": "OK", "grpc.call_duration": "42.3278ms"} -peer1.org1.example.com | 2018-12-19 08:12:41.998 UTC [gossip.privdata] StoreBlock -> INFO 051 [businesschannel] Received block [3] from buffer -peer1.org1.example.com | 2018-12-19 08:12:42.003 UTC [committer.txvalidator] Validate -> INFO 052 [businesschannel] Validated block [3] in 4ms -peer1.org1.example.com | 2018-12-19 08:12:42.014 UTC [cceventmgmt] HandleStateUpdates -> INFO 053 Channel [businesschannel]: Handling deploy or update of chaincode [exp02] -peer1.org1.example.com | 2018-12-19 08:12:42.057 UTC [kvledger] CommitWithPvtData -> INFO 054 [businesschannel] Committed block [3] with 1 transaction(s) in 43ms (state_validation=7ms block_commit=31ms state_commit=2ms) -peer1.org1.example.com | 2018-12-19 08:13:31.965 UTC [gossip.privdata] StoreBlock -> INFO 055 [businesschannel] Received block [4] from buffer -peer1.org1.example.com | 2018-12-19 08:13:31.975 UTC [committer.txvalidator] Validate -> INFO 056 [businesschannel] Validated block [4] in 7ms -peer1.org1.example.com | 2018-12-19 08:13:32.001 UTC [kvledger] CommitWithPvtData -> INFO 057 [businesschannel] Committed block [4] with 1 transaction(s) in 23ms (state_validation=0ms block_commit=13ms state_commit=4ms) -peer1.org1.example.com | 2018-12-19 08:13:36.462 UTC [gossip.privdata] StoreBlock -> INFO 058 [businesschannel] Received block [5] from buffer -peer1.org1.example.com | 2018-12-19 08:13:36.486 UTC [committer.txvalidator] Validate -> INFO 059 [businesschannel] Validated block [5] in 23ms -peer1.org1.example.com | 2018-12-19 08:13:36.513 UTC [kvledger] CommitWithPvtData -> INFO 05a [businesschannel] Committed block [5] with 1 transaction(s) in 24ms (state_validation=0ms block_commit=18ms state_commit=2ms) -peer1.org1.example.com | 2018-12-19 08:13:55.866 UTC [gossip.privdata] StoreBlock -> INFO 05b [businesschannel] Received block [6] from buffer -peer1.org1.example.com | 2018-12-19 08:13:55.869 UTC [cauthdsl] deduplicate -> WARN 05c De-duplicating identity [Org1MSP0270edfed53a78d7d3c66dc25737f57f956e48ef69dca5ecc91c26679dd4eff3] at index 2 in signature set -peer1.org1.example.com | 2018-12-19 08:13:55.873 UTC [cauthdsl] deduplicate -> WARN 05d De-duplicating identity [Org1MSP0270edfed53a78d7d3c66dc25737f57f956e48ef69dca5ecc91c26679dd4eff3] at index 2 in signature set -peer1.org1.example.com | 2018-12-19 08:13:55.893 UTC [gossip.gossip] JoinChan -> INFO 05e Joining gossip network of channel businesschannel with 3 organizations -peer1.org1.example.com | 2018-12-19 08:13:55.893 UTC [gossip.gossip] learnAnchorPeers -> INFO 05f No configured anchor peers of Org3MSP for channel businesschannel to learn about -peer1.org1.example.com | 2018-12-19 08:13:55.894 UTC [gossip.gossip] learnAnchorPeers -> INFO 060 Learning about the configured anchor peers of Org1MSP for channel businesschannel : [{peer0.org1.example.com 7051}] -peer1.org1.example.com | 2018-12-19 08:13:55.894 UTC [gossip.gossip] learnAnchorPeers -> INFO 061 Learning about the configured anchor peers of Org2MSP for channel businesschannel : [{peer0.org2.example.com 7051}] -peer1.org1.example.com | 2018-12-19 08:13:55.895 UTC [gossip.service] updateEndpoints -> WARN 062 Failed to update ordering service endpoints, due to Channel with businesschannel id was not found -peer1.org1.example.com | 2018-12-19 08:13:55.912 UTC [committer.txvalidator] Validate -> INFO 063 [businesschannel] Validated block [6] in 45ms -peer1.org1.example.com | 2018-12-19 08:13:55.927 UTC [kvledger] CommitWithPvtData -> INFO 064 [businesschannel] Committed block [6] with 1 transaction(s) in 13ms (state_validation=1ms block_commit=8ms state_commit=2ms) -peer1.org1.example.com | 2018-12-19 08:13:55.955 UTC [gossip.comm] func1 -> WARN 065 peer0.org1.example.com:7051, PKIid:3d21b0bc142d8ddae3c27797c0c2bf16b05e0414b227484fdbfabf9859231106 isn't responsive: rpc error: code = Unavailable desc = transport is closing -peer1.org1.example.com | 2018-12-19 08:13:55.966 UTC [comm.grpc.server] 1 -> INFO 066 streaming call completed {"grpc.start_time": "2018-12-19T08:11:46.718Z", "grpc.service": "gossip.Gossip", "grpc.method": "GossipStream", "grpc.peer_address": "172.18.0.7:59252", "grpc.peer_subject": "CN=peer0.org1.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "2m9.3889771s"} -peer1.org1.example.com | 2018-12-19 08:13:55.974 UTC [gossip.discovery] expireDeadMembers -> WARN 067 Entering [3d21b0bc142d8ddae3c27797c0c2bf16b05e0414b227484fdbfabf9859231106] -peer1.org1.example.com | 2018-12-19 08:13:55.977 UTC [gossip.discovery] expireDeadMembers -> WARN 068 Closing connection to Endpoint: peer0.org1.example.com:7051, InternalEndpoint: peer0.org1.example.com:7051, PKI-ID: 3d21b0bc142d8ddae3c27797c0c2bf16b05e0414b227484fdbfabf9859231106, Metadata: -peer1.org1.example.com | 2018-12-19 08:13:55.979 UTC [gossip.discovery] expireDeadMembers -> WARN 069 Exiting -peer1.org1.example.com | 2018-12-19 08:13:56.033 UTC [gossip.comm] func1 -> WARN 06a peer0.org2.example.com:7051, PKIid:75b2768046f1cff79a75d29027b3162b4c2d489ed2c22c48403d0760a7c0a76b isn't responsive: EOF -peer1.org1.example.com | 2018-12-19 08:13:56.034 UTC [gossip.discovery] expireDeadMembers -> WARN 06b Entering [75b2768046f1cff79a75d29027b3162b4c2d489ed2c22c48403d0760a7c0a76b] -peer1.org1.example.com | 2018-12-19 08:13:56.035 UTC [gossip.discovery] expireDeadMembers -> WARN 06c Closing connection to Endpoint: peer0.org2.example.com:7051, InternalEndpoint: , PKI-ID: 75b2768046f1cff79a75d29027b3162b4c2d489ed2c22c48403d0760a7c0a76b, Metadata: -peer1.org1.example.com | 2018-12-19 08:13:56.037 UTC [gossip.discovery] expireDeadMembers -> WARN 06d Exiting -peer1.org1.example.com | 2018-12-19 08:13:56.185 UTC [comm.grpc.server] 1 -> INFO 06e unary call completed {"grpc.start_time": "2018-12-19T08:13:56.185Z", "grpc.service": "gossip.Gossip", "grpc.method": "Ping", "grpc.request_deadline": "2018-12-19T08:13:58.184Z", "grpc.peer_address": "172.18.0.7:59432", "grpc.peer_subject": "CN=peer0.org1.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "126.6µs"} -peer1.org1.example.com | 2018-12-19 08:13:56.298 UTC [comm.grpc.server] 1 -> INFO 06f unary call completed {"grpc.start_time": "2018-12-19T08:13:56.298Z", "grpc.service": "gossip.Gossip", "grpc.method": "Ping", "grpc.request_deadline": "2018-12-19T08:13:58.298Z", "grpc.peer_address": "172.18.0.6:34942", "grpc.peer_subject": "CN=peer0.org2.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "177.9µs"} -peer1.org1.example.com | 2018-12-19 08:14:14.632 UTC [endorser] callChaincode -> INFO 070 [][41f52266] Entry chaincode: name:"cscc" -peer1.org1.example.com | 2018-12-19 08:14:14.633 UTC [endorser] callChaincode -> INFO 071 [][41f52266] Exit chaincode: name:"cscc" (1ms) -peer1.org1.example.com | 2018-12-19 08:14:14.634 UTC [comm.grpc.server] 1 -> INFO 072 unary call completed {"grpc.start_time": "2018-12-19T08:14:14.631Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.18.0.3:45862", "grpc.code": "OK", "grpc.call_duration": "2.3009ms"} -peer1.org1.example.com | 2018-12-19 08:14:15.774 UTC [endorser] callChaincode -> INFO 073 [][407473a1] Entry chaincode: name:"qscc" -peer1.org1.example.com | 2018-12-19 08:14:15.776 UTC [endorser] callChaincode -> INFO 074 [][407473a1] Exit chaincode: name:"qscc" (2ms) -peer1.org1.example.com | 2018-12-19 08:14:15.777 UTC [comm.grpc.server] 1 -> INFO 075 unary call completed {"grpc.start_time": "2018-12-19T08:14:15.773Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.18.0.3:45870", "grpc.code": "OK", "grpc.call_duration": "3.8585ms"} -peer0.org2.example.com | 2018-12-19 08:11:36.560 UTC [main] InitCmd -> WARN 001 CORE_LOGGING_LEVEL is no longer supported, please use the FABRIC_LOGGING_SPEC environment variable -peer0.org2.example.com | 2018-12-19 08:11:36.684 UTC [nodeCmd] serve -> INFO 002 Starting peer: -peer0.org2.example.com | Version: 1.4.0-rc1 -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 | 2018-12-19 08:11:36.685 UTC [ledgermgmt] initialize -> INFO 003 Initializing ledger mgmt -peer0.org2.example.com | 2018-12-19 08:11:36.686 UTC [kvledger] NewProvider -> INFO 004 Initializing ledger provider -peer0.org2.example.com | 2018-12-19 08:11:36.762 UTC [kvledger] NewProvider -> INFO 005 ledger provider Initialized -peer0.org2.example.com | 2018-12-19 08:11:36.818 UTC [ledgermgmt] initialize -> INFO 006 ledger mgmt initialized -peer0.org2.example.com | 2018-12-19 08:11:36.819 UTC [peer] func1 -> INFO 007 Auto-detected peer address: 172.18.0.6:7051 -peer0.org2.example.com | 2018-12-19 08:11:36.820 UTC [peer] func1 -> INFO 008 Returning peer0.org2.example.com:7051 -peer0.org2.example.com | 2018-12-19 08:11:36.820 UTC [peer] func1 -> INFO 009 Auto-detected peer address: 172.18.0.6:7051 -peer0.org2.example.com | 2018-12-19 08:11:36.821 UTC [peer] func1 -> INFO 00a Returning peer0.org2.example.com:7051 -peer0.org2.example.com | 2018-12-19 08:11:36.838 UTC [nodeCmd] serve -> INFO 00b Starting peer with TLS enabled -peer0.org2.example.com | 2018-12-19 08:11:36.850 UTC [nodeCmd] computeChaincodeEndpoint -> INFO 00c Entering computeChaincodeEndpoint with peerHostname: peer0.org2.example.com -peer0.org2.example.com | 2018-12-19 08:11:36.852 UTC [nodeCmd] computeChaincodeEndpoint -> INFO 00d Exit with ccEndpoint: peer0.org2.example.com:7052 -peer0.org2.example.com | 2018-12-19 08:11:36.868 UTC [sccapi] registerSysCC -> INFO 00e system chaincode lscc(github.com/hyperledger/fabric/core/scc/lscc) registered -peer0.org2.example.com | 2018-12-19 08:11:36.868 UTC [sccapi] registerSysCC -> INFO 00f system chaincode cscc(github.com/hyperledger/fabric/core/scc/cscc) registered -peer0.org2.example.com | 2018-12-19 08:11:36.869 UTC [sccapi] registerSysCC -> INFO 010 system chaincode qscc(github.com/hyperledger/fabric/core/scc/qscc) registered -peer0.org2.example.com | 2018-12-19 08:11:36.870 UTC [sccapi] registerSysCC -> INFO 011 system chaincode +lifecycle(github.com/hyperledger/fabric/core/chaincode/lifecycle) registered -peer0.org2.example.com | 2018-12-19 08:11:36.883 UTC [gossip.service] func1 -> INFO 012 Initialize gossip with endpoint peer0.org2.example.com:7051 and bootstrap set [peer0.org2.example.com:7051] -peer0.org2.example.com | 2018-12-19 08:11:36.888 UTC [gossip.gossip] NewGossipService -> INFO 013 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 | 2018-12-19 08:11:36.889 UTC [gossip.gossip] start -> INFO 014 Gossip instance peer0.org2.example.com:7051 started -peer0.org2.example.com | 2018-12-19 08:11:36.891 UTC [sccapi] deploySysCC -> INFO 015 system chaincode lscc/(github.com/hyperledger/fabric/core/scc/lscc) deployed -peer0.org2.example.com | 2018-12-19 08:11:36.893 UTC [cscc] Init -> INFO 016 Init CSCC -peer0.org2.example.com | 2018-12-19 08:11:36.893 UTC [sccapi] deploySysCC -> INFO 017 system chaincode cscc/(github.com/hyperledger/fabric/core/scc/cscc) deployed -peer0.org2.example.com | 2018-12-19 08:11:36.895 UTC [qscc] Init -> INFO 018 Init QSCC -peer0.org2.example.com | 2018-12-19 08:11:36.895 UTC [sccapi] deploySysCC -> INFO 019 system chaincode qscc/(github.com/hyperledger/fabric/core/scc/qscc) deployed -peer1.org2.example.com | 2018-12-19 08:11:36.260 UTC [main] InitCmd -> WARN 001 CORE_LOGGING_LEVEL is no longer supported, please use the FABRIC_LOGGING_SPEC environment variable -peer0.org2.example.com | 2018-12-19 08:11:36.896 UTC [sccapi] deploySysCC -> INFO 01a system chaincode +lifecycle/(github.com/hyperledger/fabric/core/chaincode/lifecycle) deployed -peer1.org2.example.com | 2018-12-19 08:11:36.366 UTC [nodeCmd] serve -> INFO 002 Starting peer: -peer0.org2.example.com | 2018-12-19 08:11:36.896 UTC [nodeCmd] serve -> INFO 01b Deployed system chaincodes -peer1.org2.example.com | Version: 1.4.0-rc1 -peer0.org2.example.com | 2018-12-19 08:11:36.898 UTC [discovery] NewService -> INFO 01c Created with config TLS: true, authCacheMaxSize: 1000, authCachePurgeRatio: 0.750000 -orderer0.example.com | 2018-12-19 08:11:33.987 UTC [localconfig] completeInitialization -> INFO 001 Kafka.Version unset, setting to 0.10.2.0 -peer1.org2.example.com | Commit SHA: development build -peer0.org2.example.com | 2018-12-19 08:11:36.899 UTC [nodeCmd] registerDiscoveryService -> INFO 01d Discovery service activated -orderer0.example.com | 2018-12-19 08:11:34.124 UTC [orderer.common.server] prettyPrintStruct -> INFO 002 Orderer config values: +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 +peer0.org1.example.com | Commit SHA: development build +peer0.org1.example.com | Go version: go1.11.2 +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" -peer1.org2.example.com | Go version: go1.11.2 -peer0.org2.example.com | 2018-12-19 08:11:36.899 UTC [nodeCmd] serve -> INFO 01e Starting peer with ID=[name:"peer0.org2.example.com" ], network ID=[dev], address=[peer0.org2.example.com:7051] orderer0.example.com | General.ListenAddress = "0.0.0.0" -peer1.org2.example.com | OS/Arch: linux/amd64 -peer1.org2.example.com | Chaincode: -peer0.org2.example.com | 2018-12-19 08:11:36.901 UTC [nodeCmd] serve -> INFO 01f Started peer with ID=[name:"peer0.org2.example.com" ], network ID=[dev], address=[peer0.org2.example.com:7051] orderer0.example.com | General.ListenPort = 7050 -peer1.org2.example.com | Base Image Version: 0.4.14 -peer0.org2.example.com | 2018-12-19 08:11:37.632 UTC [comm.grpc.server] 1 -> INFO 020 unary call completed {"grpc.start_time": "2018-12-19T08:11:37.632Z", "grpc.service": "gossip.Gossip", "grpc.method": "Ping", "grpc.request_deadline": "2018-12-19T08:11:39.631Z", "grpc.peer_address": "172.18.0.5:32790", "grpc.peer_subject": "CN=peer1.org2.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "357.3µs"} orderer0.example.com | General.TLS.Enabled = true -peer1.org2.example.com | Base Docker Namespace: hyperledger -peer0.org2.example.com | 2018-12-19 08:11:37.647 UTC [comm.grpc.server] 1 -> INFO 021 unary call completed {"grpc.start_time": "2018-12-19T08:11:37.647Z", "grpc.service": "gossip.Gossip", "grpc.method": "Ping", "grpc.request_deadline": "2018-12-19T08:11:39.647Z", "grpc.peer_address": "172.18.0.5:32792", "grpc.peer_subject": "CN=peer1.org2.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "122.1µs"} orderer0.example.com | General.TLS.PrivateKey = "/var/hyperledger/orderer/tls/server.key" -peer1.org2.example.com | Base Docker Label: org.hyperledger.fabric -peer0.org2.example.com | 2018-12-19 08:11:39.648 UTC [gossip.comm] authenticateRemotePeer -> WARN 022 Failed reading messge from 172.18.0.5:32790, reason: Timed out waiting for connection message from 172.18.0.5:32790 orderer0.example.com | General.TLS.Certificate = "/var/hyperledger/orderer/tls/server.crt" -peer1.org2.example.com | Docker Namespace: hyperledger -peer0.org2.example.com | 2018-12-19 08:11:39.648 UTC [gossip.comm] GossipStream -> ERRO 023 Authentication failed: Timed out waiting for connection message from 172.18.0.5:32790 orderer0.example.com | General.TLS.RootCAs = [/var/hyperledger/orderer/tls/ca.crt] orderer0.example.com | General.TLS.ClientAuthRequired = false -peer1.org2.example.com | 2018-12-19 08:11:36.369 UTC [ledgermgmt] initialize -> INFO 003 Initializing ledger mgmt -peer0.org2.example.com | 2018-12-19 08:11:39.648 UTC [comm.grpc.server] 1 -> INFO 024 streaming call completed {"grpc.start_time": "2018-12-19T08:11:37.635Z", "grpc.service": "gossip.Gossip", "grpc.method": "GossipStream", "grpc.request_deadline": "2018-12-19T08:11:47.635Z", "grpc.peer_address": "172.18.0.5:32790", "grpc.peer_subject": "CN=peer1.org2.example.com,L=San Francisco,ST=California,C=US", "error": "Timed out waiting for connection message from 172.18.0.5:32790", "grpc.code": "Unknown", "grpc.call_duration": "2.0123692s"} orderer0.example.com | General.TLS.ClientRootCAs = [] -peer1.org2.example.com | 2018-12-19 08:11:36.371 UTC [kvledger] NewProvider -> INFO 004 Initializing ledger provider -peer1.org2.example.com | 2018-12-19 08:11:36.440 UTC [kvledger] NewProvider -> INFO 005 ledger provider Initialized -peer0.org2.example.com | 2018-12-19 08:11:40.572 UTC [endorser] callChaincode -> INFO 025 [][7a742821] Entry chaincode: name:"cscc" orderer0.example.com | General.Cluster.RootCAs = [/etc/hyperledger/fabric/tls/ca.crt] -peer1.org2.example.com | 2018-12-19 08:11:36.512 UTC [ledgermgmt] initialize -> INFO 006 ledger mgmt initialized -peer1.org2.example.com | 2018-12-19 08:11:36.513 UTC [peer] func1 -> INFO 007 Auto-detected peer address: 172.18.0.5:7051 -peer1.org2.example.com | 2018-12-19 08:11:36.513 UTC [peer] func1 -> INFO 008 Returning peer1.org2.example.com:7051 orderer0.example.com | General.Cluster.ClientCertificate = "" -peer1.org2.example.com | 2018-12-19 08:11:36.514 UTC [peer] func1 -> INFO 009 Auto-detected peer address: 172.18.0.5:7051 orderer0.example.com | General.Cluster.ClientPrivateKey = "" orderer0.example.com | General.Cluster.DialTimeout = 5s orderer0.example.com | General.Cluster.RPCTimeout = 7s -peer1.org2.example.com | 2018-12-19 08:11:36.514 UTC [peer] func1 -> INFO 00a Returning peer1.org2.example.com:7051 orderer0.example.com | General.Cluster.ReplicationBufferSize = 20971520 -peer1.org2.example.com | 2018-12-19 08:11:36.527 UTC [nodeCmd] serve -> INFO 00b Starting peer with TLS enabled -peer1.org2.example.com | 2018-12-19 08:11:36.541 UTC [nodeCmd] computeChaincodeEndpoint -> INFO 00c Entering computeChaincodeEndpoint with peerHostname: peer1.org2.example.com -peer1.org2.example.com | 2018-12-19 08:11:36.542 UTC [nodeCmd] computeChaincodeEndpoint -> INFO 00d Exit with ccEndpoint: peer1.org2.example.com:7052 orderer0.example.com | General.Cluster.ReplicationPullTimeout = 5s -peer1.org2.example.com | 2018-12-19 08:11:36.559 UTC [sccapi] registerSysCC -> INFO 00e system chaincode lscc(github.com/hyperledger/fabric/core/scc/lscc) registered +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 -peer1.org2.example.com | 2018-12-19 08:11:36.559 UTC [sccapi] registerSysCC -> INFO 00f system chaincode cscc(github.com/hyperledger/fabric/core/scc/cscc) registered orderer0.example.com | General.Keepalive.ServerTimeout = 20s -peer1.org2.example.com | 2018-12-19 08:11:36.560 UTC [sccapi] registerSysCC -> INFO 010 system chaincode qscc(github.com/hyperledger/fabric/core/scc/qscc) registered -peer1.org2.example.com | 2018-12-19 08:11:36.561 UTC [sccapi] registerSysCC -> INFO 011 system chaincode +lifecycle(github.com/hyperledger/fabric/core/chaincode/lifecycle) registered -peer1.org2.example.com | 2018-12-19 08:11:36.581 UTC [gossip.service] func1 -> INFO 012 Initialize gossip with endpoint peer1.org2.example.com:7051 and bootstrap set [peer0.org2.example.com:7051] orderer0.example.com | General.GenesisMethod = "file" -peer1.org2.example.com | 2018-12-19 08:11:36.610 UTC [gossip.gossip] NewGossipService -> INFO 013 Creating gossip service with self membership of Endpoint: peer1.org2.example.com:7051, InternalEndpoint: peer1.org2.example.com:7051, PKI-ID: 54071d960ff51087a5562fde4801dfa904c634c6c3c38da0d982a0b1f62f0a27, Metadata: +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" +peer1.org1.example.com | Commit SHA: development build +peer1.org1.example.com | Go version: go1.11.2 +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" -peer0.org2.example.com | 2018-12-19 08:11:40.573 UTC [ledgermgmt] CreateLedger -> INFO 026 Creating ledger [businesschannel] with genesis block -peer1.org2.example.com | 2018-12-19 08:11:36.614 UTC [gossip.gossip] start -> INFO 014 Gossip instance peer1.org2.example.com:7051 started 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" -peer1.org2.example.com | 2018-12-19 08:11:36.646 UTC [sccapi] deploySysCC -> INFO 015 system chaincode lscc/(github.com/hyperledger/fabric/core/scc/lscc) deployed orderer0.example.com | General.LocalMSPDir = "/var/hyperledger/orderer/msp" -peer1.org2.example.com | 2018-12-19 08:11:36.648 UTC [cscc] Init -> INFO 016 Init CSCC -peer1.org2.example.com | 2018-12-19 08:11:36.648 UTC [sccapi] deploySysCC -> INFO 017 system chaincode cscc/(github.com/hyperledger/fabric/core/scc/cscc) deployed -peer1.org2.example.com | 2018-12-19 08:11:36.651 UTC [qscc] Init -> INFO 018 Init QSCC orderer0.example.com | General.LocalMSPID = "OrdererMSP" -peer1.org2.example.com | 2018-12-19 08:11:36.652 UTC [sccapi] deploySysCC -> INFO 019 system chaincode qscc/(github.com/hyperledger/fabric/core/scc/qscc) deployed orderer0.example.com | General.BCCSP.ProviderName = "SW" orderer0.example.com | General.BCCSP.SwOpts.SecLevel = 256 orderer0.example.com | General.BCCSP.SwOpts.HashFamily = "SHA2" -peer1.org2.example.com | 2018-12-19 08:11:36.656 UTC [sccapi] deploySysCC -> INFO 01a system chaincode +lifecycle/(github.com/hyperledger/fabric/core/chaincode/lifecycle) deployed orderer0.example.com | General.BCCSP.SwOpts.Ephemeral = false -peer1.org2.example.com | 2018-12-19 08:11:36.656 UTC [nodeCmd] serve -> INFO 01b Deployed system chaincodes -peer1.org2.example.com | 2018-12-19 08:11:36.659 UTC [discovery] NewService -> INFO 01c Created with config TLS: true, authCacheMaxSize: 1000, authCachePurgeRatio: 0.750000 -peer1.org2.example.com | 2018-12-19 08:11:36.659 UTC [nodeCmd] registerDiscoveryService -> INFO 01d Discovery service activated orderer0.example.com | General.BCCSP.SwOpts.FileKeystore.KeyStorePath = "/var/hyperledger/orderer/msp/keystore" -peer1.org2.example.com | 2018-12-19 08:11:36.660 UTC [nodeCmd] serve -> INFO 01e Starting peer with ID=[name:"peer1.org2.example.com" ], network ID=[dev], address=[peer1.org2.example.com:7051] orderer0.example.com | General.BCCSP.SwOpts.DummyKeystore = -peer0.org2.example.com | 2018-12-19 08:11:40.576 UTC [fsblkstorage] newBlockfileMgr -> INFO 027 Getting block information from block storage -peer0.org2.example.com | 2018-12-19 08:11:40.597 UTC [kvledger] CommitWithPvtData -> INFO 028 [businesschannel] Committed block [0] with 1 transaction(s) in 15ms (state_validation=1ms block_commit=9ms state_commit=3ms) -peer1.org2.example.com | 2018-12-19 08:11:36.661 UTC [nodeCmd] serve -> INFO 01f Started peer with ID=[name:"peer1.org2.example.com" ], network ID=[dev], address=[peer1.org2.example.com:7051] orderer0.example.com | General.BCCSP.SwOpts.InmemKeystore = orderer0.example.com | General.BCCSP.PluginOpts = orderer0.example.com | General.Authentication.TimeWindow = 15m0s -peer1.org2.example.com | 2018-12-19 08:11:40.805 UTC [endorser] callChaincode -> INFO 020 [][27dadfef] Entry chaincode: name:"cscc" orderer0.example.com | FileLedger.Location = "/var/hyperledger/production/orderer" orderer0.example.com | FileLedger.Prefix = "hyperledger-fabric-ordererledger" -peer1.org2.example.com | 2018-12-19 08:11:40.807 UTC [ledgermgmt] CreateLedger -> INFO 021 Creating ledger [businesschannel] with genesis block -peer1.org2.example.com | 2018-12-19 08:11:40.810 UTC [fsblkstorage] newBlockfileMgr -> INFO 022 Getting block information from block storage orderer0.example.com | RAMLedger.HistorySize = 1000 -peer1.org2.example.com | 2018-12-19 08:11:40.843 UTC [kvledger] CommitWithPvtData -> INFO 023 [businesschannel] Committed block [0] with 1 transaction(s) in 27ms (state_validation=1ms block_commit=18ms state_commit=4ms) -peer0.org2.example.com | 2018-12-19 08:11:40.600 UTC [ledgermgmt] CreateLedger -> INFO 029 Created ledger [businesschannel] with genesis block orderer0.example.com | Kafka.Retry.ShortInterval = 5s orderer0.example.com | Kafka.Retry.ShortTotal = 10m0s -peer1.org2.example.com | 2018-12-19 08:11:40.846 UTC [ledgermgmt] CreateLedger -> INFO 024 Created ledger [businesschannel] with genesis block -peer1.org2.example.com | 2018-12-19 08:11:40.863 UTC [gossip.gossip] JoinChan -> INFO 025 Joining gossip network of channel businesschannel with 2 organizations orderer0.example.com | Kafka.Retry.LongInterval = 5m0s -peer1.org2.example.com | 2018-12-19 08:11:40.863 UTC [gossip.gossip] learnAnchorPeers -> INFO 026 No configured anchor peers of Org2MSP for channel businesschannel to learn about -peer1.org2.example.com | 2018-12-19 08:11:40.863 UTC [gossip.gossip] learnAnchorPeers -> INFO 027 No configured anchor peers of Org1MSP for channel businesschannel to learn about orderer0.example.com | Kafka.Retry.LongTotal = 12h0m0s orderer0.example.com | Kafka.Retry.NetworkTimeouts.DialTimeout = 10s -peer1.org2.example.com | 2018-12-19 08:11:40.909 UTC [gossip.state] NewGossipStateProvider -> INFO 028 Updating metadata information, current ledger sequence is at = 0, next expected block is = 1 orderer0.example.com | Kafka.Retry.NetworkTimeouts.ReadTimeout = 10s orderer0.example.com | Kafka.Retry.NetworkTimeouts.WriteTimeout = 10s -peer1.org2.example.com | 2018-12-19 08:11:40.910 UTC [sccapi] deploySysCC -> INFO 029 system chaincode lscc/businesschannel(github.com/hyperledger/fabric/core/scc/lscc) deployed -peer1.org2.example.com | 2018-12-19 08:11:40.911 UTC [cscc] Init -> INFO 02a Init CSCC orderer0.example.com | Kafka.Retry.Metadata.RetryMax = 3 -peer1.org2.example.com | 2018-12-19 08:11:40.911 UTC [sccapi] deploySysCC -> INFO 02b system chaincode cscc/businesschannel(github.com/hyperledger/fabric/core/scc/cscc) deployed orderer0.example.com | Kafka.Retry.Metadata.RetryBackoff = 250ms -peer0.org2.example.com | 2018-12-19 08:11:40.610 UTC [gossip.gossip] JoinChan -> INFO 02a Joining gossip network of channel businesschannel with 2 organizations -peer1.org2.example.com | 2018-12-19 08:11:40.911 UTC [qscc] Init -> INFO 02c Init QSCC orderer0.example.com | Kafka.Retry.Producer.RetryMax = 3 orderer0.example.com | Kafka.Retry.Producer.RetryBackoff = 100ms orderer0.example.com | Kafka.Retry.Consumer.RetryBackoff = 2s -peer1.org2.example.com | 2018-12-19 08:11:40.911 UTC [sccapi] deploySysCC -> INFO 02d system chaincode qscc/businesschannel(github.com/hyperledger/fabric/core/scc/qscc) deployed orderer0.example.com | Kafka.Verbose = false -peer1.org2.example.com | 2018-12-19 08:11:40.912 UTC [sccapi] deploySysCC -> INFO 02e system chaincode +lifecycle/businesschannel(github.com/hyperledger/fabric/core/chaincode/lifecycle) deployed -peer0.org2.example.com | 2018-12-19 08:11:40.610 UTC [gossip.gossip] learnAnchorPeers -> INFO 02b No configured anchor peers of Org1MSP for channel businesschannel to learn about orderer0.example.com | Kafka.Version = 0.10.2.0 -peer1.org2.example.com | 2018-12-19 08:11:40.913 UTC [endorser] callChaincode -> INFO 02f [][27dadfef] Exit chaincode: name:"cscc" (107ms) -peer1.org2.example.com | 2018-12-19 08:11:40.913 UTC [comm.grpc.server] 1 -> INFO 030 unary call completed {"grpc.start_time": "2018-12-19T08:11:40.804Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.18.0.3:44428", "grpc.code": "OK", "grpc.call_duration": "109.2627ms"} orderer0.example.com | Kafka.TLS.Enabled = false -peer1.org2.example.com | 2018-12-19 08:11:41.948 UTC [endorser] callChaincode -> INFO 031 [][63a3be69] Entry chaincode: name:"cscc" -peer1.org2.example.com | 2018-12-19 08:11:41.949 UTC [endorser] callChaincode -> INFO 032 [][63a3be69] Exit chaincode: name:"cscc" (1ms) orderer0.example.com | Kafka.TLS.PrivateKey = "" orderer0.example.com | Kafka.TLS.Certificate = "" -peer1.org2.example.com | 2018-12-19 08:11:41.949 UTC [comm.grpc.server] 1 -> INFO 033 unary call completed {"grpc.start_time": "2018-12-19T08:11:41.948Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.18.0.3:44436", "grpc.code": "OK", "grpc.call_duration": "1.7008ms"} orderer0.example.com | Kafka.TLS.RootCAs = [] orderer0.example.com | Kafka.TLS.ClientAuthRequired = false -peer1.org2.example.com | 2018-12-19 08:11:42.956 UTC [endorser] callChaincode -> INFO 034 [][052fc774] Entry chaincode: name:"qscc" -peer1.org2.example.com | 2018-12-19 08:11:42.958 UTC [endorser] callChaincode -> INFO 035 [][052fc774] Exit chaincode: name:"qscc" (2ms) orderer0.example.com | Kafka.TLS.ClientRootCAs = [] -peer1.org2.example.com | 2018-12-19 08:11:42.958 UTC [comm.grpc.server] 1 -> INFO 036 unary call completed {"grpc.start_time": "2018-12-19T08:11:42.955Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.18.0.3:44444", "grpc.code": "OK", "grpc.call_duration": "3.4219ms"} orderer0.example.com | Kafka.SASLPlain.Enabled = false -peer0.org2.example.com | 2018-12-19 08:11:40.611 UTC [gossip.gossip] learnAnchorPeers -> INFO 02c No configured anchor peers of Org2MSP for channel businesschannel to learn about -peer1.org2.example.com | 2018-12-19 08:11:45.864 UTC [gossip.channel] reportMembershipChanges -> INFO 037 Membership view has changed. peers went online: [[peer0.org2.example.com:7051]] , current view: [[peer0.org2.example.com:7051]] orderer0.example.com | Kafka.SASLPlain.User = "" -peer0.org2.example.com | 2018-12-19 08:11:40.646 UTC [gossip.state] NewGossipStateProvider -> INFO 02d Updating metadata information, current ledger sequence is at = 0, next expected block is = 1 -peer1.org2.example.com | 2018-12-19 08:11:46.651 UTC [comm.grpc.server] 1 -> INFO 038 unary call completed {"grpc.start_time": "2018-12-19T08:11:46.651Z", "grpc.service": "gossip.Gossip", "grpc.method": "Ping", "grpc.request_deadline": "2018-12-19T08:11:48.65Z", "grpc.peer_address": "172.18.0.7:59770", "grpc.peer_subject": "CN=peer0.org1.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "111.9µs"} orderer0.example.com | Kafka.SASLPlain.Password = "" -peer1.org2.example.com | 2018-12-19 08:11:46.674 UTC [gossip.election] leaderElection -> INFO 039 54071d960ff51087a5562fde4801dfa904c634c6c3c38da0d982a0b1f62f0a27 : Some peer is already a leader -peer1.org2.example.com | 2018-12-19 08:11:46.694 UTC [comm.grpc.server] 1 -> INFO 03a unary call completed {"grpc.start_time": "2018-12-19T08:11:46.694Z", "grpc.service": "gossip.Gossip", "grpc.method": "Ping", "grpc.request_deadline": "2018-12-19T08:11:48.693Z", "grpc.peer_address": "172.18.0.4:45098", "grpc.peer_subject": "CN=peer1.org1.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "121.6µs"} orderer0.example.com | Kafka.Topic.ReplicationFactor = 3 -peer1.org2.example.com | 2018-12-19 08:11:46.702 UTC [gossip.privdata] StoreBlock -> INFO 03b [businesschannel] Received block [1] from buffer -peer1.org2.example.com | 2018-12-19 08:11:46.763 UTC [gossip.gossip] JoinChan -> INFO 03c Joining gossip network of channel businesschannel with 2 organizations orderer0.example.com | Debug.BroadcastTraceDir = "" orderer0.example.com | Debug.DeliverTraceDir = "" -peer1.org2.example.com | 2018-12-19 08:11:46.763 UTC [gossip.gossip] learnAnchorPeers -> INFO 03d Learning about the configured anchor peers of Org1MSP for channel businesschannel : [{peer0.org1.example.com 7051}] orderer0.example.com | Consensus = map[WALDir:/var/hyperledger/production/orderer/etcdraft/wal SnapDir:/var/hyperledger/production/orderer/etcdraft/snapshot] -orderer0.example.com | Operations.ListenAddress = "127.0.0.1:8443" -peer1.org2.example.com | 2018-12-19 08:11:46.766 UTC [gossip.gossip] learnAnchorPeers -> INFO 03e No configured anchor peers of Org2MSP for channel businesschannel to learn about -peer1.org2.example.com | 2018-12-19 08:11:46.766 UTC [gossip.service] updateEndpoints -> WARN 03f Failed to update ordering service endpoints, due to Channel with businesschannel id was not found +orderer0.example.com | Operations.ListenAddress = "0.0.0.0:8443" orderer0.example.com | Operations.TLS.Enabled = false -peer1.org2.example.com | 2018-12-19 08:11:46.800 UTC [comm.grpc.server] 1 -> INFO 040 streaming call completed {"grpc.start_time": "2018-12-19T08:11:46.654Z", "grpc.service": "gossip.Gossip", "grpc.method": "GossipStream", "grpc.peer_address": "172.18.0.7:59770", "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": "145.8947ms"} -peer1.org2.example.com | 2018-12-19 08:11:46.801 UTC [committer.txvalidator] Validate -> INFO 041 [businesschannel] Validated block [1] in 97ms orderer0.example.com | Operations.TLS.PrivateKey = "" -peer0.org2.example.com | 2018-12-19 08:11:40.647 UTC [sccapi] deploySysCC -> INFO 02e system chaincode lscc/businesschannel(github.com/hyperledger/fabric/core/scc/lscc) deployed -peer1.org2.example.com | 2018-12-19 08:11:46.817 UTC [kvledger] CommitWithPvtData -> INFO 042 [businesschannel] Committed block [1] with 1 transaction(s) in 15ms (state_validation=0ms block_commit=9ms state_commit=2ms) orderer0.example.com | Operations.TLS.Certificate = "" -peer1.org2.example.com | 2018-12-19 08:11:46.817 UTC [gossip.privdata] StoreBlock -> INFO 043 [businesschannel] Received block [2] from buffer orderer0.example.com | Operations.TLS.RootCAs = [] -peer1.org2.example.com | 2018-12-19 08:11:46.844 UTC [gossip.gossip] JoinChan -> INFO 044 Joining gossip network of channel businesschannel with 2 organizations -peer0.org2.example.com | 2018-12-19 08:11:40.648 UTC [cscc] Init -> INFO 02f Init CSCC -peer0.org2.example.com | 2018-12-19 08:11:40.648 UTC [sccapi] deploySysCC -> INFO 030 system chaincode cscc/businesschannel(github.com/hyperledger/fabric/core/scc/cscc) deployed orderer0.example.com | Operations.TLS.ClientAuthRequired = false -peer1.org2.example.com | 2018-12-19 08:11:46.844 UTC [gossip.gossip] learnAnchorPeers -> INFO 045 Learning about the configured anchor peers of Org2MSP for channel businesschannel : [{peer0.org2.example.com 7051}] -peer1.org2.example.com | 2018-12-19 08:11:46.848 UTC [gossip.gossip] learnAnchorPeers -> INFO 046 Learning about the configured anchor peers of Org1MSP for channel businesschannel : [{peer0.org1.example.com 7051}] -peer1.org2.example.com | 2018-12-19 08:11:46.850 UTC [gossip.service] updateEndpoints -> WARN 047 Failed to update ordering service endpoints, due to Channel with businesschannel id was not found -peer1.org2.example.com | 2018-12-19 08:11:46.866 UTC [committer.txvalidator] Validate -> INFO 048 [businesschannel] Validated block [2] in 48ms orderer0.example.com | Operations.TLS.ClientRootCAs = [] -orderer0.example.com | Metrics.Provider = "disabled" -peer1.org2.example.com | 2018-12-19 08:11:46.890 UTC [kvledger] CommitWithPvtData -> INFO 049 [businesschannel] Committed block [2] with 1 transaction(s) in 19ms (state_validation=0ms block_commit=11ms state_commit=4ms) +orderer0.example.com | Metrics.Provider = "prometheus" orderer0.example.com | Metrics.Statsd.Network = "udp" -peer1.org2.example.com | 2018-12-19 08:11:46.909 UTC [comm.grpc.server] 1 -> INFO 04a unary call completed {"grpc.start_time": "2018-12-19T08:11:46.909Z", "grpc.service": "gossip.Gossip", "grpc.method": "Ping", "grpc.request_deadline": "2018-12-19T08:11:48.908Z", "grpc.peer_address": "172.18.0.7:59792", "grpc.peer_subject": "CN=peer0.org1.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "340.8µs"} -peer0.org2.example.com | 2018-12-19 08:11:40.649 UTC [qscc] Init -> INFO 031 Init QSCC orderer0.example.com | Metrics.Statsd.Address = "127.0.0.1:8125" -peer1.org2.example.com | 2018-12-19 08:11:46.958 UTC [comm.grpc.server] 1 -> INFO 04b streaming call completed {"grpc.start_time": "2018-12-19T08:11:46.922Z", "grpc.service": "gossip.Gossip", "grpc.method": "GossipStream", "grpc.peer_address": "172.18.0.7:59792", "grpc.peer_subject": "CN=peer0.org1.example.com,L=San Francisco,ST=California,C=US", "error": "EOF", "grpc.code": "Unknown", "grpc.call_duration": "36.0085ms"} orderer0.example.com | Metrics.Statsd.WriteInterval = 30s -peer1.org2.example.com | 2018-12-19 08:11:48.097 UTC [comm.grpc.server] 1 -> INFO 04c unary call completed {"grpc.start_time": "2018-12-19T08:11:48.096Z", "grpc.service": "gossip.Gossip", "grpc.method": "Ping", "grpc.request_deadline": "2018-12-19T08:11:50.096Z", "grpc.peer_address": "172.18.0.7:59802", "grpc.peer_subject": "CN=peer0.org1.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "464.4µs"} orderer0.example.com | Metrics.Statsd.Prefix = "" -orderer0.example.com | 2018-12-19 08:11:34.175 UTC [orderer.common.server] initializeServerConfig -> INFO 003 Starting orderer with TLS enabled -orderer0.example.com | 2018-12-19 08:11:34.180 UTC [fsblkstorage] newBlockfileMgr -> INFO 004 Getting block information from block storage -peer1.org2.example.com | 2018-12-19 08:11:51.307 UTC [gossip.channel] reportMembershipChanges -> INFO 04d Membership view has changed. peers went online: [[peer0.org1.example.com:7051 ] [peer1.org1.example.com:7051 ]] , current view: [[peer0.org2.example.com:7051] [peer0.org1.example.com:7051 ] [peer1.org1.example.com:7051 ]] -orderer0.example.com | 2018-12-19 08:11:34.204 UTC [orderer.commmon.multichannel] Initialize -> INFO 005 Starting system channel 'testchainid' with genesis block hash cde6efa82d0288cf91294accd919b39e2e13c658393e2d2d62d545b9d2dd5999 and orderer type solo -orderer0.example.com | 2018-12-19 08:11:34.204 UTC [orderer.common.server] Start -> INFO 006 Starting orderer: +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 -peer1.org2.example.com | 2018-12-19 08:11:54.259 UTC [endorser] callChaincode -> INFO 04e [][98848be8] Entry chaincode: name:"lscc" -peer1.org2.example.com | 2018-12-19 08:11:54.261 UTC [lscc] executeInstall -> INFO 04f Installed Chaincode [exp02] Version [1.0] to peer -peer1.org2.example.com | 2018-12-19 08:11:54.261 UTC [endorser] callChaincode -> INFO 050 [][98848be8] Exit chaincode: name:"lscc" (2ms) orderer0.example.com | OS/Arch: linux/amd64 -orderer0.example.com | 2018-12-19 08:11:34.204 UTC [orderer.common.server] Start -> INFO 007 Beginning to serve requests -orderer0.example.com | 2018-12-19 08:11:39.250 UTC [comm.grpc.server] 1 -> INFO 008 streaming call completed {"grpc.start_time": "2018-12-19T08:11:39.196Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.18.0.3:60746", "grpc.code": "OK", "grpc.call_duration": "53.8668ms"} -orderer0.example.com | 2018-12-19 08:11:39.250 UTC [comm.grpc.server] 1 -> INFO 009 streaming call completed {"grpc.start_time": "2018-12-19T08:11:39.211Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Broadcast", "grpc.peer_address": "172.18.0.3:60748", "grpc.code": "OK", "grpc.call_duration": "39.6923ms"} -orderer0.example.com | 2018-12-19 08:11:39.268 UTC [fsblkstorage] newBlockfileMgr -> INFO 00a Getting block information from block storage -orderer0.example.com | 2018-12-19 08:11:39.276 UTC [orderer.commmon.multichannel] newChain -> INFO 00b Created and starting new chain businesschannel -orderer0.example.com | 2018-12-19 08:11:39.487 UTC [common.deliver] Handle -> WARN 00c Error reading from 172.18.0.3:60750: rpc error: code = Canceled desc = context canceled -orderer0.example.com | 2018-12-19 08:11:39.489 UTC [comm.grpc.server] 1 -> INFO 00d streaming call completed {"grpc.start_time": "2018-12-19T08:11:39.271Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.18.0.3:60750", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "218.3558ms"} -orderer0.example.com | 2018-12-19 08:11:43.511 UTC [orderer.common.broadcast] Handle -> WARN 00e Error reading from 172.18.0.3:60778: rpc error: code = Canceled desc = context canceled -orderer0.example.com | 2018-12-19 08:11:43.511 UTC [comm.grpc.server] 1 -> INFO 00f streaming call completed {"grpc.start_time": "2018-12-19T08:11:43.487Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Broadcast", "grpc.peer_address": "172.18.0.3:60778", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "24.3837ms"} -orderer0.example.com | 2018-12-19 08:11:43.512 UTC [common.deliver] Handle -> WARN 010 Error reading from 172.18.0.3:60776: rpc error: code = Canceled desc = context canceled -orderer0.example.com | 2018-12-19 08:11:43.512 UTC [comm.grpc.server] 1 -> INFO 011 streaming call completed {"grpc.start_time": "2018-12-19T08:11:43.469Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.18.0.3:60776", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "43.455ms"} -orderer0.example.com | 2018-12-19 08:11:45.711 UTC [orderer.common.broadcast] Handle -> WARN 012 Error reading from 172.18.0.3:60782: rpc error: code = Canceled desc = context canceled -orderer0.example.com | 2018-12-19 08:11:45.712 UTC [comm.grpc.server] 1 -> INFO 013 streaming call completed {"grpc.start_time": "2018-12-19T08:11:45.685Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Broadcast", "grpc.peer_address": "172.18.0.3:60782", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "26.7804ms"} -orderer0.example.com | 2018-12-19 08:11:45.717 UTC [common.deliver] Handle -> WARN 014 Error reading from 172.18.0.3:60780: rpc error: code = Canceled desc = context canceled -orderer0.example.com | 2018-12-19 08:11:45.718 UTC [comm.grpc.server] 1 -> INFO 015 streaming call completed {"grpc.start_time": "2018-12-19T08:11:45.669Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.18.0.3:60780", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "49.9858ms"} -orderer0.example.com | 2018-12-19 08:12:39.970 UTC [orderer.common.broadcast] Handle -> WARN 016 Error reading from 172.18.0.3:60852: rpc error: code = Canceled desc = context canceled -orderer0.example.com | 2018-12-19 08:12:39.971 UTC [comm.grpc.server] 1 -> INFO 017 streaming call completed {"grpc.start_time": "2018-12-19T08:11:54.725Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Broadcast", "grpc.peer_address": "172.18.0.3:60852", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "45.3166346s"} -peer1.org2.example.com | 2018-12-19 08:11:54.262 UTC [comm.grpc.server] 1 -> INFO 051 unary call completed {"grpc.start_time": "2018-12-19T08:11:54.258Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.18.0.3:44514", "grpc.code": "OK", "grpc.call_duration": "4.1083ms"} -orderer0.example.com | 2018-12-19 08:13:29.916 UTC [orderer.common.broadcast] Handle -> WARN 018 Error reading from 172.18.0.3:60870: rpc error: code = Canceled desc = context canceled -peer1.org2.example.com | 2018-12-19 08:12:40.684 UTC [comm.grpc.server] 1 -> INFO 052 unary call completed {"grpc.start_time": "2018-12-19T08:12:40.681Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.18.0.3:44526", "grpc.code": "OK", "grpc.call_duration": "3.2615ms"} -peer1.org2.example.com | 2018-12-19 08:12:41.978 UTC [gossip.privdata] StoreBlock -> INFO 053 [businesschannel] Received block [3] from buffer -peer1.org2.example.com | 2018-12-19 08:12:42.004 UTC [committer.txvalidator] Validate -> INFO 054 [businesschannel] Validated block [3] in 25ms -peer1.org2.example.com | 2018-12-19 08:12:42.008 UTC [cceventmgmt] HandleStateUpdates -> INFO 055 Channel [businesschannel]: Handling deploy or update of chaincode [exp02] -peer1.org2.example.com | 2018-12-19 08:12:42.045 UTC [kvledger] CommitWithPvtData -> INFO 056 [businesschannel] Committed block [3] with 1 transaction(s) in 37ms (state_validation=9ms block_commit=16ms state_commit=8ms) -peer1.org2.example.com | 2018-12-19 08:12:42.856 UTC [endorser] callChaincode -> INFO 057 [businesschannel][23ee39be] Entry chaincode: name:"exp02" -peer1.org2.example.com | 2018-12-19 08:12:42.869 UTC [chaincode.platform.golang] GenerateDockerBuild -> INFO 058 building chaincode with ldflagsOpt: '-ldflags "-linkmode external -extldflags '-static'"' -peer1.org2.example.com | 2018-12-19 08:13:29.528 UTC [endorser] callChaincode -> INFO 059 [businesschannel][23ee39be] Exit chaincode: name:"exp02" (46706ms) -peer1.org2.example.com | 2018-12-19 08:13:29.533 UTC [comm.grpc.server] 1 -> INFO 05a unary call completed {"grpc.start_time": "2018-12-19T08:12:42.854Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.18.0.3:44530", "grpc.code": "OK", "grpc.call_duration": "46.7127553s"} -peer0.org2.example.com | 2018-12-19 08:11:40.649 UTC [sccapi] deploySysCC -> INFO 032 system chaincode qscc/businesschannel(github.com/hyperledger/fabric/core/scc/qscc) deployed -peer1.org2.example.com | 2018-12-19 08:13:30.781 UTC [endorser] callChaincode -> INFO 05b [businesschannel][69f8de62] Entry chaincode: name:"exp02" -orderer0.example.com | 2018-12-19 08:13:29.916 UTC [comm.grpc.server] 1 -> INFO 019 streaming call completed {"grpc.start_time": "2018-12-19T08:13:29.89Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Broadcast", "grpc.peer_address": "172.18.0.3:60870", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "26.4973ms"} -orderer0.example.com | 2018-12-19 08:13:34.257 UTC [orderer.common.broadcast] Handle -> WARN 01a Error reading from 172.18.0.3:60884: rpc error: code = Canceled desc = context canceled -orderer0.example.com | 2018-12-19 08:13:34.257 UTC [comm.grpc.server] 1 -> INFO 01b streaming call completed {"grpc.start_time": "2018-12-19T08:13:34.221Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Broadcast", "grpc.peer_address": "172.18.0.3:60884", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "36.7293ms"} -peer1.org2.example.com | 2018-12-19 08:13:30.787 UTC [endorser] callChaincode -> INFO 05c [businesschannel][69f8de62] Exit chaincode: name:"exp02" (6ms) -orderer0.example.com | 2018-12-19 08:13:43.206 UTC [common.deliver] Handle -> WARN 01c Error reading from 172.18.0.3:60934: rpc error: code = Canceled desc = context canceled -peer1.org2.example.com | 2018-12-19 08:13:30.789 UTC [comm.grpc.server] 1 -> INFO 05d unary call completed {"grpc.start_time": "2018-12-19T08:13:30.778Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.18.0.3:44542", "grpc.code": "OK", "grpc.call_duration": "11.1559ms"} -peer1.org2.example.com | 2018-12-19 08:13:31.930 UTC [gossip.privdata] StoreBlock -> INFO 05e [businesschannel] Received block [4] from buffer -peer1.org2.example.com | 2018-12-19 08:13:31.940 UTC [committer.txvalidator] Validate -> INFO 05f [businesschannel] Validated block [4] in 9ms -orderer0.example.com | 2018-12-19 08:13:43.208 UTC [comm.grpc.server] 1 -> INFO 01d streaming call completed {"grpc.start_time": "2018-12-19T08:13:43.2Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.18.0.3:60934", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "8.3707ms"} -peer1.org2.example.com | 2018-12-19 08:13:31.970 UTC [kvledger] CommitWithPvtData -> INFO 060 [businesschannel] Committed block [4] with 1 transaction(s) in 27ms (state_validation=1ms block_commit=20ms state_commit=3ms) -orderer0.example.com | 2018-12-19 08:13:43.548 UTC [common.deliver] Handle -> WARN 01e Error reading from 172.18.0.3:60936: rpc error: code = Canceled desc = context canceled -orderer0.example.com | 2018-12-19 08:13:43.548 UTC [comm.grpc.server] 1 -> INFO 01f streaming call completed {"grpc.start_time": "2018-12-19T08:13:43.529Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.18.0.3:60936", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "18.63ms"} -orderer0.example.com | 2018-12-19 08:13:43.707 UTC [common.deliver] Handle -> WARN 020 Error reading from 172.18.0.3:60938: rpc error: code = Canceled desc = context canceled -orderer0.example.com | 2018-12-19 08:13:43.708 UTC [comm.grpc.server] 1 -> INFO 021 streaming call completed {"grpc.start_time": "2018-12-19T08:13:43.7Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.18.0.3:60938", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "8.1067ms"} -peer1.org2.example.com | 2018-12-19 08:13:33.480 UTC [endorser] callChaincode -> INFO 061 [businesschannel][cc898ea3] Entry chaincode: name:"exp02" -orderer0.example.com | 2018-12-19 08:13:43.955 UTC [common.deliver] Handle -> WARN 022 Error reading from 172.18.0.3:60940: rpc error: code = Canceled desc = context canceled -peer1.org2.example.com | 2018-12-19 08:13:33.488 UTC [endorser] callChaincode -> INFO 062 [businesschannel][cc898ea3] Exit chaincode: name:"exp02" (7ms) -peer1.org2.example.com | 2018-12-19 08:13:33.489 UTC [comm.grpc.server] 1 -> INFO 063 unary call completed {"grpc.start_time": "2018-12-19T08:13:33.477Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.18.0.3:44546", "grpc.code": "OK", "grpc.call_duration": "11.9937ms"} -peer1.org2.example.com | 2018-12-19 08:13:34.221 UTC [endorser] callChaincode -> INFO 064 [businesschannel][0a871af9] Entry chaincode: name:"exp02" -orderer0.example.com | 2018-12-19 08:13:43.955 UTC [comm.grpc.server] 1 -> INFO 023 streaming call completed {"grpc.start_time": "2018-12-19T08:13:43.931Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.18.0.3:60940", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "23.8715ms"} -peer1.org2.example.com | 2018-12-19 08:13:34.240 UTC [endorser] callChaincode -> INFO 065 [businesschannel][0a871af9] Exit chaincode: name:"exp02" (18ms) -orderer0.example.com | 2018-12-19 08:13:44.438 UTC [common.deliver] Handle -> WARN 024 Error reading from 172.18.0.3:60942: rpc error: code = Canceled desc = context canceled -orderer0.example.com | 2018-12-19 08:13:44.439 UTC [comm.grpc.server] 1 -> INFO 025 streaming call completed {"grpc.start_time": "2018-12-19T08:13:44.425Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.18.0.3:60942", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "14.0098ms"} -orderer0.example.com | 2018-12-19 08:13:44.816 UTC [common.deliver] Handle -> WARN 026 Error reading from 172.18.0.3:60944: rpc error: code = Canceled desc = context canceled -peer1.org2.example.com | 2018-12-19 08:13:34.241 UTC [comm.grpc.server] 1 -> INFO 066 unary call completed {"grpc.start_time": "2018-12-19T08:13:34.206Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.18.0.3:44550", "grpc.code": "OK", "grpc.call_duration": "34.9934ms"} -orderer0.example.com | 2018-12-19 08:13:44.817 UTC [comm.grpc.server] 1 -> INFO 027 streaming call completed {"grpc.start_time": "2018-12-19T08:13:44.795Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.18.0.3:60944", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "23.1935ms"} -peer1.org2.example.com | 2018-12-19 08:13:36.457 UTC [gossip.privdata] StoreBlock -> INFO 067 [businesschannel] Received block [5] from buffer -peer1.org2.example.com | 2018-12-19 08:13:36.500 UTC [committer.txvalidator] Validate -> INFO 068 [businesschannel] Validated block [5] in 42ms -peer1.org2.example.com | 2018-12-19 08:13:36.609 UTC [kvledger] CommitWithPvtData -> INFO 069 [businesschannel] Committed block [5] with 1 transaction(s) in 91ms (state_validation=4ms block_commit=49ms state_commit=17ms) -orderer0.example.com | 2018-12-19 08:13:45.232 UTC [common.deliver] Handle -> WARN 028 Error reading from 172.18.0.3:60946: rpc error: code = Canceled desc = context canceled -peer1.org2.example.com | 2018-12-19 08:13:55.928 UTC [gossip.privdata] StoreBlock -> INFO 06a [businesschannel] Received block [6] from buffer -orderer0.example.com | 2018-12-19 08:13:45.233 UTC [comm.grpc.server] 1 -> INFO 029 streaming call completed {"grpc.start_time": "2018-12-19T08:13:45.221Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.18.0.3:60946", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "11.2157ms"} -orderer0.example.com | 2018-12-19 08:13:45.635 UTC [common.deliver] Handle -> WARN 02a Error reading from 172.18.0.3:60948: rpc error: code = Canceled desc = context canceled -orderer0.example.com | 2018-12-19 08:13:45.635 UTC [comm.grpc.server] 1 -> INFO 02b streaming call completed {"grpc.start_time": "2018-12-19T08:13:45.621Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.18.0.3:60948", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "14.7427ms"} -orderer0.example.com | 2018-12-19 08:13:45.894 UTC [common.deliver] Handle -> WARN 02c Error reading from 172.18.0.3:60950: rpc error: code = Canceled desc = context canceled -orderer0.example.com | 2018-12-19 08:13:45.894 UTC [comm.grpc.server] 1 -> INFO 02d streaming call completed {"grpc.start_time": "2018-12-19T08:13:45.884Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.18.0.3:60950", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "10.3308ms"} -orderer0.example.com | 2018-12-19 08:13:46.158 UTC [common.deliver] Handle -> WARN 02e Error reading from 172.18.0.3:60952: rpc error: code = Canceled desc = context canceled -orderer0.example.com | 2018-12-19 08:13:46.158 UTC [comm.grpc.server] 1 -> INFO 02f streaming call completed {"grpc.start_time": "2018-12-19T08:13:46.138Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.18.0.3:60952", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "19.7885ms"} -orderer0.example.com | 2018-12-19 08:13:46.458 UTC [common.deliver] Handle -> WARN 030 Error reading from 172.18.0.3:60954: rpc error: code = Canceled desc = context canceled -orderer0.example.com | 2018-12-19 08:13:46.459 UTC [comm.grpc.server] 1 -> INFO 031 streaming call completed {"grpc.start_time": "2018-12-19T08:13:46.445Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.18.0.3:60954", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "13.8658ms"} -orderer0.example.com | 2018-12-19 08:13:46.852 UTC [common.deliver] Handle -> WARN 032 Error reading from 172.18.0.3:60956: rpc error: code = Canceled desc = context canceled -orderer0.example.com | 2018-12-19 08:13:46.852 UTC [comm.grpc.server] 1 -> INFO 033 streaming call completed {"grpc.start_time": "2018-12-19T08:13:46.842Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.18.0.3:60956", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "10.6695ms"} -orderer0.example.com | 2018-12-19 08:13:55.768 UTC [cauthdsl] deduplicate -> WARN 034 De-duplicating identity [Org1MSP0270edfed53a78d7d3c66dc25737f57f956e48ef69dca5ecc91c26679dd4eff3] at index 2 in signature set -orderer0.example.com | 2018-12-19 08:13:55.769 UTC [cauthdsl] deduplicate -> WARN 035 De-duplicating identity [Org1MSP0270edfed53a78d7d3c66dc25737f57f956e48ef69dca5ecc91c26679dd4eff3] at index 2 in signature set -orderer0.example.com | 2018-12-19 08:13:55.815 UTC [common.deliver] Handle -> WARN 036 Error reading from 172.18.0.3:60958: rpc error: code = Canceled desc = context canceled -peer1.org2.example.com | 2018-12-19 08:13:55.931 UTC [cauthdsl] deduplicate -> WARN 06b De-duplicating identity [Org1MSP0270edfed53a78d7d3c66dc25737f57f956e48ef69dca5ecc91c26679dd4eff3] at index 2 in signature set -orderer0.example.com | 2018-12-19 08:13:55.815 UTC [comm.grpc.server] 1 -> INFO 037 streaming call completed {"grpc.start_time": "2018-12-19T08:13:55.739Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.18.0.3:60958", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "76.1519ms"} -peer1.org2.example.com | 2018-12-19 08:13:55.932 UTC [cauthdsl] deduplicate -> WARN 06c De-duplicating identity [Org1MSP0270edfed53a78d7d3c66dc25737f57f956e48ef69dca5ecc91c26679dd4eff3] at index 2 in signature set -peer1.org2.example.com | 2018-12-19 08:13:55.957 UTC [gossip.gossip] JoinChan -> INFO 06d Joining gossip network of channel businesschannel with 3 organizations -peer1.org2.example.com | 2018-12-19 08:13:55.958 UTC [gossip.gossip] learnAnchorPeers -> INFO 06e Learning about the configured anchor peers of Org1MSP for channel businesschannel : [{peer0.org1.example.com 7051}] -orderer0.example.com | 2018-12-19 08:13:55.820 UTC [orderer.common.broadcast] Handle -> WARN 038 Error reading from 172.18.0.3:60960: rpc error: code = Canceled desc = context canceled -peer1.org2.example.com | 2018-12-19 08:13:55.958 UTC [gossip.gossip] learnAnchorPeers -> INFO 06f Learning about the configured anchor peers of Org2MSP for channel businesschannel : [{peer0.org2.example.com 7051}] -orderer0.example.com | 2018-12-19 08:13:55.824 UTC [comm.grpc.server] 1 -> INFO 039 streaming call completed {"grpc.start_time": "2018-12-19T08:13:55.763Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Broadcast", "grpc.peer_address": "172.18.0.3:60960", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "61.462ms"} -orderer0.example.com | 2018-12-19 08:13:55.827 UTC [cauthdsl] deduplicate -> WARN 03a De-duplicating identity [Org1MSP0270edfed53a78d7d3c66dc25737f57f956e48ef69dca5ecc91c26679dd4eff3] at index 2 in signature set -orderer0.example.com | 2018-12-19 08:13:55.828 UTC [cauthdsl] deduplicate -> WARN 03b De-duplicating identity [Org1MSP0270edfed53a78d7d3c66dc25737f57f956e48ef69dca5ecc91c26679dd4eff3] at index 2 in signature set -peer1.org2.example.com | 2018-12-19 08:13:55.958 UTC [gossip.gossip] learnAnchorPeers -> INFO 070 No configured anchor peers of Org3MSP for channel businesschannel to learn about -orderer0.example.com | 2018-12-19 08:13:58.012 UTC [common.deliver] Handle -> WARN 03c Error reading from 172.18.0.3:60988: rpc error: code = Canceled desc = context canceled -peer1.org2.example.com | 2018-12-19 08:13:55.959 UTC [gossip.service] updateEndpoints -> WARN 071 Failed to update ordering service endpoints, due to Channel with businesschannel id was not found -peer1.org2.example.com | 2018-12-19 08:13:55.982 UTC [committer.txvalidator] Validate -> INFO 072 [businesschannel] Validated block [6] in 53ms -peer1.org2.example.com | 2018-12-19 08:13:56.004 UTC [kvledger] CommitWithPvtData -> INFO 073 [businesschannel] Committed block [6] with 1 transaction(s) in 19ms (state_validation=0ms block_commit=12ms state_commit=3ms) -orderer0.example.com | 2018-12-19 08:13:58.013 UTC [comm.grpc.server] 1 -> INFO 03d streaming call completed {"grpc.start_time": "2018-12-19T08:13:57.999Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.18.0.3:60988", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "13.3758ms"} -orderer0.example.com | 2018-12-19 08:13:58.177 UTC [common.deliver] Handle -> WARN 03e Error reading from 172.18.0.3:60990: rpc error: code = Canceled desc = context canceled -orderer0.example.com | 2018-12-19 08:13:58.178 UTC [comm.grpc.server] 1 -> INFO 03f streaming call completed {"grpc.start_time": "2018-12-19T08:13:58.17Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.18.0.3:60990", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "7.0947ms"} -orderer0.example.com | 2018-12-19 08:13:58.731 UTC [common.deliver] Handle -> WARN 040 Error reading from 172.18.0.3:60992: rpc error: code = Canceled desc = context canceled -orderer0.example.com | 2018-12-19 08:13:58.732 UTC [comm.grpc.server] 1 -> INFO 041 streaming call completed {"grpc.start_time": "2018-12-19T08:13:58.719Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.18.0.3:60992", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "12.8045ms"} -orderer0.example.com | 2018-12-19 08:13:58.920 UTC [common.deliver] Handle -> WARN 042 Error reading from 172.18.0.3:60994: rpc error: code = Canceled desc = context canceled -orderer0.example.com | 2018-12-19 08:13:58.921 UTC [comm.grpc.server] 1 -> INFO 043 streaming call completed {"grpc.start_time": "2018-12-19T08:13:58.898Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.18.0.3:60994", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "23.3282ms"} -orderer0.example.com | 2018-12-19 08:13:59.097 UTC [common.deliver] Handle -> WARN 044 Error reading from 172.18.0.3:60996: rpc error: code = Canceled desc = context canceled -orderer0.example.com | 2018-12-19 08:13:59.098 UTC [comm.grpc.server] 1 -> INFO 045 streaming call completed {"grpc.start_time": "2018-12-19T08:13:59.085Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.18.0.3:60996", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "12.4647ms"} -orderer0.example.com | 2018-12-19 08:13:59.332 UTC [common.deliver] Handle -> WARN 046 Error reading from 172.18.0.3:60998: rpc error: code = Canceled desc = context canceled -orderer0.example.com | 2018-12-19 08:13:59.332 UTC [comm.grpc.server] 1 -> INFO 047 streaming call completed {"grpc.start_time": "2018-12-19T08:13:59.317Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.18.0.3:60998", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "15.9587ms"} -orderer0.example.com | 2018-12-19 08:13:59.747 UTC [common.deliver] Handle -> WARN 048 Error reading from 172.18.0.3:32768: rpc error: code = Canceled desc = context canceled -orderer0.example.com | 2018-12-19 08:13:59.747 UTC [comm.grpc.server] 1 -> INFO 049 streaming call completed {"grpc.start_time": "2018-12-19T08:13:59.692Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.18.0.3:32768", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "55.1541ms"} -orderer0.example.com | 2018-12-19 08:14:00.131 UTC [common.deliver] Handle -> WARN 04a Error reading from 172.18.0.3:32770: rpc error: code = Canceled desc = context canceled -peer1.org2.example.com | 2018-12-19 08:13:56.057 UTC [comm.grpc.server] 1 -> INFO 074 streaming call completed {"grpc.start_time": "2018-12-19T08:11:48.102Z", "grpc.service": "gossip.Gossip", "grpc.method": "GossipStream", "grpc.peer_address": "172.18.0.7:59802", "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": "2m8.0943744s"} -orderer0.example.com | 2018-12-19 08:14:00.131 UTC [comm.grpc.server] 1 -> INFO 04b streaming call completed {"grpc.start_time": "2018-12-19T08:14:00.108Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.18.0.3:32770", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "23.4406ms"} -orderer0.example.com | 2018-12-19 08:14:00.349 UTC [common.deliver] Handle -> WARN 04c Error reading from 172.18.0.3:32772: rpc error: code = Canceled desc = context canceled -peer1.org2.example.com | 2018-12-19 08:13:56.233 UTC [gossip.comm] func1 -> WARN 075 peer0.org2.example.com:7051, PKIid:75b2768046f1cff79a75d29027b3162b4c2d489ed2c22c48403d0760a7c0a76b isn't responsive: EOF -peer1.org2.example.com | 2018-12-19 08:13:56.233 UTC [gossip.discovery] expireDeadMembers -> WARN 076 Entering [75b2768046f1cff79a75d29027b3162b4c2d489ed2c22c48403d0760a7c0a76b] -orderer0.example.com | 2018-12-19 08:14:00.350 UTC [comm.grpc.server] 1 -> INFO 04d streaming call completed {"grpc.start_time": "2018-12-19T08:14:00.34Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.18.0.3:32772", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "10.0703ms"} -peer1.org2.example.com | 2018-12-19 08:13:56.234 UTC [gossip.discovery] expireDeadMembers -> WARN 077 Closing connection to Endpoint: peer0.org2.example.com:7051, InternalEndpoint: peer0.org2.example.com:7051, PKI-ID: 75b2768046f1cff79a75d29027b3162b4c2d489ed2c22c48403d0760a7c0a76b, Metadata: -peer1.org2.example.com | 2018-12-19 08:13:56.234 UTC [gossip.discovery] expireDeadMembers -> WARN 078 Exiting -orderer0.example.com | 2018-12-19 08:14:00.648 UTC [common.deliver] Handle -> WARN 04e Error reading from 172.18.0.3:32774: rpc error: code = Canceled desc = context canceled -orderer0.example.com | 2018-12-19 08:14:00.649 UTC [comm.grpc.server] 1 -> INFO 04f streaming call completed {"grpc.start_time": "2018-12-19T08:14:00.634Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.18.0.3:32774", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "14.9414ms"} -peer1.org2.example.com | 2018-12-19 08:13:56.287 UTC [comm.grpc.server] 1 -> INFO 079 unary call completed {"grpc.start_time": "2018-12-19T08:13:56.287Z", "grpc.service": "gossip.Gossip", "grpc.method": "Ping", "grpc.request_deadline": "2018-12-19T08:13:58.287Z", "grpc.peer_address": "172.18.0.6:50224", "grpc.peer_subject": "CN=peer0.org2.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "120.6µs"} -orderer0.example.com | 2018-12-19 08:14:01.098 UTC [common.deliver] Handle -> WARN 050 Error reading from 172.18.0.3:32776: rpc error: code = Canceled desc = context canceled -orderer0.example.com | 2018-12-19 08:14:01.098 UTC [comm.grpc.server] 1 -> INFO 051 streaming call completed {"grpc.start_time": "2018-12-19T08:14:01.079Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.18.0.3:32776", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "19.6551ms"} -peer1.org2.example.com | 2018-12-19 08:14:14.923 UTC [endorser] callChaincode -> INFO 07a [][d8a7d829] Entry chaincode: name:"cscc" -peer1.org2.example.com | 2018-12-19 08:14:14.924 UTC [endorser] callChaincode -> INFO 07b [][d8a7d829] Exit chaincode: name:"cscc" (1ms) -orderer0.example.com | 2018-12-19 08:14:01.653 UTC [common.deliver] Handle -> WARN 052 Error reading from 172.18.0.3:32778: rpc error: code = Canceled desc = context canceled -peer1.org2.example.com | 2018-12-19 08:14:14.926 UTC [comm.grpc.server] 1 -> INFO 07c unary call completed {"grpc.start_time": "2018-12-19T08:14:14.922Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.18.0.3:44694", "grpc.code": "OK", "grpc.call_duration": "3.9534ms"} -peer1.org2.example.com | 2018-12-19 08:14:16.186 UTC [endorser] callChaincode -> INFO 07d [][29ae9646] Entry chaincode: name:"qscc" -orderer0.example.com | 2018-12-19 08:14:01.653 UTC [comm.grpc.server] 1 -> INFO 053 streaming call completed {"grpc.start_time": "2018-12-19T08:14:01.626Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.18.0.3:32778", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "27.0192ms"} -orderer0.example.com | 2018-12-19 08:14:02.108 UTC [common.deliver] Handle -> WARN 054 Error reading from 172.18.0.3:32780: rpc error: code = Canceled desc = context canceled -peer1.org2.example.com | 2018-12-19 08:14:16.191 UTC [endorser] callChaincode -> INFO 07e [][29ae9646] Exit chaincode: name:"qscc" (1ms) -orderer0.example.com | 2018-12-19 08:14:02.108 UTC [comm.grpc.server] 1 -> INFO 055 streaming call completed {"grpc.start_time": "2018-12-19T08:14:02.082Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.18.0.3:32780", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "26.4043ms"} -peer1.org2.example.com | 2018-12-19 08:14:16.192 UTC [comm.grpc.server] 1 -> INFO 07f unary call completed {"grpc.start_time": "2018-12-19T08:14:16.184Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.18.0.3:44702", "grpc.code": "OK", "grpc.call_duration": "7.7947ms"} -peer0.org2.example.com | 2018-12-19 08:11:40.650 UTC [sccapi] deploySysCC -> INFO 033 system chaincode +lifecycle/businesschannel(github.com/hyperledger/fabric/core/chaincode/lifecycle) deployed -orderer0.example.com | 2018-12-19 08:14:02.453 UTC [common.deliver] Handle -> WARN 056 Error reading from 172.18.0.3:32782: rpc error: code = Canceled desc = context canceled -peer0.org2.example.com | 2018-12-19 08:11:40.651 UTC [endorser] callChaincode -> INFO 034 [][7a742821] Exit chaincode: name:"cscc" (79ms) -orderer0.example.com | 2018-12-19 08:14:02.453 UTC [comm.grpc.server] 1 -> INFO 057 streaming call completed {"grpc.start_time": "2018-12-19T08:14:02.415Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.18.0.3:32782", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "38.3231ms"} -orderer0.example.com | 2018-12-19 08:14:02.774 UTC [common.deliver] Handle -> WARN 058 Error reading from 172.18.0.3:32784: rpc error: code = Canceled desc = context canceled -orderer0.example.com | 2018-12-19 08:14:02.774 UTC [comm.grpc.server] 1 -> INFO 059 streaming call completed {"grpc.start_time": "2018-12-19T08:14:02.752Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.18.0.3:32784", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "21.6929ms"} -peer0.org2.example.com | 2018-12-19 08:11:40.651 UTC [comm.grpc.server] 1 -> INFO 035 unary call completed {"grpc.start_time": "2018-12-19T08:11:40.571Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.18.0.3:44716", "grpc.code": "OK", "grpc.call_duration": "80.7061ms"} -peer0.org2.example.com | 2018-12-19 08:11:41.760 UTC [endorser] callChaincode -> INFO 036 [][65540c49] Entry chaincode: name:"cscc" -peer0.org2.example.com | 2018-12-19 08:11:41.762 UTC [endorser] callChaincode -> INFO 037 [][65540c49] Exit chaincode: name:"cscc" (1ms) -peer0.org2.example.com | 2018-12-19 08:11:41.762 UTC [comm.grpc.server] 1 -> INFO 038 unary call completed {"grpc.start_time": "2018-12-19T08:11:41.759Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.18.0.3:44724", "grpc.code": "OK", "grpc.call_duration": "3.2013ms"} -peer0.org2.example.com | 2018-12-19 08:11:42.779 UTC [endorser] callChaincode -> INFO 039 [][0dd921b8] Entry chaincode: name:"qscc" -peer0.org2.example.com | 2018-12-19 08:11:42.781 UTC [endorser] callChaincode -> INFO 03a [][0dd921b8] Exit chaincode: name:"qscc" (2ms) -peer0.org2.example.com | 2018-12-19 08:11:42.782 UTC [comm.grpc.server] 1 -> INFO 03b unary call completed {"grpc.start_time": "2018-12-19T08:11:42.778Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.18.0.3:44732", "grpc.code": "OK", "grpc.call_duration": "3.2061ms"} -peer0.org2.example.com | 2018-12-19 08:11:45.611 UTC [gossip.channel] reportMembershipChanges -> INFO 03c Membership view has changed. peers went online: [[peer1.org2.example.com:7051]] , current view: [[peer1.org2.example.com:7051]] -peer0.org2.example.com | 2018-12-19 08:11:46.253 UTC [comm.grpc.server] 1 -> INFO 03d unary call completed {"grpc.start_time": "2018-12-19T08:11:46.253Z", "grpc.service": "gossip.Gossip", "grpc.method": "Ping", "grpc.request_deadline": "2018-12-19T08:11:48.251Z", "grpc.peer_address": "172.18.0.7:54898", "grpc.peer_subject": "CN=peer0.org1.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "197µs"} -peer0.org2.example.com | 2018-12-19 08:11:46.281 UTC [comm.grpc.server] 1 -> INFO 03e streaming call completed {"grpc.start_time": "2018-12-19T08:11:46.26Z", "grpc.service": "gossip.Gossip", "grpc.method": "GossipStream", "grpc.request_deadline": "2018-12-19T08:11:56.259Z", "grpc.peer_address": "172.18.0.7:54898", "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": "20.8853ms"} -peer0.org2.example.com | 2018-12-19 08:11:46.287 UTC [comm.grpc.server] 1 -> INFO 03f unary call completed {"grpc.start_time": "2018-12-19T08:11:46.287Z", "grpc.service": "gossip.Gossip", "grpc.method": "Ping", "grpc.request_deadline": "2018-12-19T08:11:48.287Z", "grpc.peer_address": "172.18.0.7:54900", "grpc.peer_subject": "CN=peer0.org1.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "124.2µs"} -peer0.org2.example.com | 2018-12-19 08:11:46.318 UTC [comm.grpc.server] 1 -> INFO 040 unary call completed {"grpc.start_time": "2018-12-19T08:11:46.317Z", "grpc.service": "gossip.Gossip", "grpc.method": "Ping", "grpc.request_deadline": "2018-12-19T08:11:48.313Z", "grpc.peer_address": "172.18.0.4:52938", "grpc.peer_subject": "CN=peer1.org1.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "120.5µs"} -peer0.org2.example.com | 2018-12-19 08:11:46.331 UTC [comm.grpc.server] 1 -> INFO 041 streaming call completed {"grpc.start_time": "2018-12-19T08:11:46.32Z", "grpc.service": "gossip.Gossip", "grpc.method": "GossipStream", "grpc.request_deadline": "2018-12-19T08:11:56.32Z", "grpc.peer_address": "172.18.0.4:52938", "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": "10.4782ms"} -peer0.org2.example.com | 2018-12-19 08:11:46.343 UTC [comm.grpc.server] 1 -> INFO 042 unary call completed {"grpc.start_time": "2018-12-19T08:11:46.343Z", "grpc.service": "gossip.Gossip", "grpc.method": "Ping", "grpc.request_deadline": "2018-12-19T08:11:48.342Z", "grpc.peer_address": "172.18.0.4:52942", "grpc.peer_subject": "CN=peer1.org1.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "374.6µs"} -peer0.org2.example.com | 2018-12-19 08:11:46.650 UTC [gossip.election] beLeader -> INFO 043 75b2768046f1cff79a75d29027b3162b4c2d489ed2c22c48403d0760a7c0a76b : Becoming a leader -peer0.org2.example.com | 2018-12-19 08:11:46.650 UTC [gossip.service] func1 -> INFO 044 Elected as a leader, starting delivery service for channel businesschannel -peer0.org2.example.com | 2018-12-19 08:11:46.683 UTC [gossip.privdata] StoreBlock -> INFO 045 [businesschannel] Received block [1] from buffer -peer0.org2.example.com | 2018-12-19 08:11:46.735 UTC [gossip.gossip] JoinChan -> INFO 046 Joining gossip network of channel businesschannel with 2 organizations -peer0.org2.example.com | 2018-12-19 08:11:46.735 UTC [gossip.gossip] learnAnchorPeers -> INFO 047 Learning about the configured anchor peers of Org1MSP for channel businesschannel : [{peer0.org1.example.com 7051}] -peer0.org2.example.com | 2018-12-19 08:11:46.735 UTC [gossip.gossip] learnAnchorPeers -> INFO 048 No configured anchor peers of Org2MSP for channel businesschannel to learn about -peer0.org2.example.com | 2018-12-19 08:11:46.755 UTC [committer.txvalidator] Validate -> INFO 049 [businesschannel] Validated block [1] in 71ms -peer0.org2.example.com | 2018-12-19 08:11:46.760 UTC [comm.grpc.server] 1 -> INFO 04a streaming call completed {"grpc.start_time": "2018-12-19T08:11:46.289Z", "grpc.service": "gossip.Gossip", "grpc.method": "GossipStream", "grpc.peer_address": "172.18.0.7:54900", "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": "471.6926ms"} -peer0.org2.example.com | 2018-12-19 08:11:46.796 UTC [kvledger] CommitWithPvtData -> INFO 04b [businesschannel] Committed block [1] with 1 transaction(s) in 40ms (state_validation=0ms block_commit=24ms state_commit=6ms) -peer0.org2.example.com | 2018-12-19 08:11:46.797 UTC [gossip.privdata] StoreBlock -> INFO 04c [businesschannel] Received block [2] from buffer -peer0.org2.example.com | 2018-12-19 08:11:46.818 UTC [gossip.gossip] JoinChan -> INFO 04d Joining gossip network of channel businesschannel with 2 organizations -peer0.org2.example.com | 2018-12-19 08:11:46.818 UTC [gossip.gossip] learnAnchorPeers -> INFO 04e Learning about the configured anchor peers of Org1MSP for channel businesschannel : [{peer0.org1.example.com 7051}] -peer0.org2.example.com | 2018-12-19 08:11:46.820 UTC [gossip.gossip] learnAnchorPeers -> INFO 04f Learning about the configured anchor peers of Org2MSP for channel businesschannel : [{peer0.org2.example.com 7051}] -peer0.org2.example.com | 2018-12-19 08:11:46.821 UTC [gossip.gossip] learnAnchorPeers -> INFO 050 Anchor peer with same endpoint, skipping connecting to myself -peer0.org2.example.com | 2018-12-19 08:11:46.845 UTC [committer.txvalidator] Validate -> INFO 051 [businesschannel] Validated block [2] in 47ms -peer0.org2.example.com | 2018-12-19 08:11:46.873 UTC [comm.grpc.server] 1 -> INFO 052 unary call completed {"grpc.start_time": "2018-12-19T08:11:46.873Z", "grpc.service": "gossip.Gossip", "grpc.method": "Ping", "grpc.request_deadline": "2018-12-19T08:11:48.872Z", "grpc.peer_address": "172.18.0.5:32864", "grpc.peer_subject": "CN=peer1.org2.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "145.1µs"} -peer0.org2.example.com | 2018-12-19 08:11:46.875 UTC [kvledger] CommitWithPvtData -> INFO 053 [businesschannel] Committed block [2] with 1 transaction(s) in 29ms (state_validation=0ms block_commit=14ms state_commit=10ms) -peer0.org2.example.com | 2018-12-19 08:11:46.897 UTC [gossip.comm] func1 -> WARN 054 peer0.org1.example.com:7051, PKIid:3d21b0bc142d8ddae3c27797c0c2bf16b05e0414b227484fdbfabf9859231106 isn't responsive: EOF -peer0.org2.example.com | 2018-12-19 08:11:46.900 UTC [gossip.discovery] expireDeadMembers -> WARN 055 Entering [3d21b0bc142d8ddae3c27797c0c2bf16b05e0414b227484fdbfabf9859231106] -peer0.org2.example.com | 2018-12-19 08:11:46.900 UTC [gossip.discovery] expireDeadMembers -> WARN 056 Closing connection to Endpoint: peer0.org1.example.com:7051, InternalEndpoint: , PKI-ID: 3d21b0bc142d8ddae3c27797c0c2bf16b05e0414b227484fdbfabf9859231106, Metadata: -peer0.org2.example.com | 2018-12-19 08:11:46.900 UTC [gossip.discovery] expireDeadMembers -> WARN 057 Exiting -peer0.org2.example.com | 2018-12-19 08:11:46.915 UTC [comm.grpc.server] 1 -> INFO 058 unary call completed {"grpc.start_time": "2018-12-19T08:11:46.915Z", "grpc.service": "gossip.Gossip", "grpc.method": "Ping", "grpc.request_deadline": "2018-12-19T08:11:48.915Z", "grpc.peer_address": "172.18.0.7:54934", "grpc.peer_subject": "CN=peer0.org1.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "227.9µs"} -peer0.org2.example.com | 2018-12-19 08:11:46.941 UTC [comm.grpc.server] 1 -> INFO 059 streaming call completed {"grpc.start_time": "2018-12-19T08:11:46.917Z", "grpc.service": "gossip.Gossip", "grpc.method": "GossipStream", "grpc.peer_address": "172.18.0.7:54934", "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": "23.3309ms"} -peer0.org2.example.com | 2018-12-19 08:11:46.971 UTC [comm.grpc.server] 1 -> INFO 05a unary call completed {"grpc.start_time": "2018-12-19T08:11:46.971Z", "grpc.service": "gossip.Gossip", "grpc.method": "Ping", "grpc.request_deadline": "2018-12-19T08:11:48.97Z", "grpc.peer_address": "172.18.0.7:54938", "grpc.peer_subject": "CN=peer0.org1.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "119.6µs"} -peer0.org2.example.com | 2018-12-19 08:11:48.925 UTC [gossip.comm] authenticateRemotePeer -> WARN 05b Failed reading messge from 172.18.0.5:32864, reason: Timed out waiting for connection message from 172.18.0.5:32864 -peer0.org2.example.com | 2018-12-19 08:11:48.926 UTC [gossip.comm] GossipStream -> ERRO 05c Authentication failed: Timed out waiting for connection message from 172.18.0.5:32864 -peer0.org2.example.com | 2018-12-19 08:11:48.927 UTC [comm.grpc.server] 1 -> INFO 05d streaming call completed {"grpc.start_time": "2018-12-19T08:11:46.892Z", "grpc.service": "gossip.Gossip", "grpc.method": "GossipStream", "grpc.request_deadline": "2018-12-19T08:11:56.892Z", "grpc.peer_address": "172.18.0.5:32864", "grpc.peer_subject": "CN=peer1.org2.example.com,L=San Francisco,ST=California,C=US", "error": "Timed out waiting for connection message from 172.18.0.5:32864", "grpc.code": "Unknown", "grpc.call_duration": "2.0341605s"} -peer0.org2.example.com | 2018-12-19 08:11:51.301 UTC [gossip.channel] reportMembershipChanges -> INFO 05e Membership view has changed. peers went online: [[peer1.org1.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 | 2018-12-19 08:11:53.392 UTC [endorser] callChaincode -> INFO 05f [][21d611ef] Entry chaincode: name:"lscc" -peer0.org2.example.com | 2018-12-19 08:11:53.396 UTC [lscc] executeInstall -> INFO 060 Installed Chaincode [exp02] Version [1.0] to peer -peer0.org2.example.com | 2018-12-19 08:11:53.398 UTC [endorser] callChaincode -> INFO 061 [][21d611ef] Exit chaincode: name:"lscc" (6ms) -peer0.org2.example.com | 2018-12-19 08:11:53.399 UTC [comm.grpc.server] 1 -> INFO 062 unary call completed {"grpc.start_time": "2018-12-19T08:11:53.39Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.18.0.3:44800", "grpc.code": "OK", "grpc.call_duration": "9.1269ms"} -peer0.org2.example.com | 2018-12-19 08:12:41.974 UTC [gossip.privdata] StoreBlock -> INFO 063 [businesschannel] Received block [3] from buffer -peer0.org2.example.com | 2018-12-19 08:12:41.978 UTC [committer.txvalidator] Validate -> INFO 064 [businesschannel] Validated block [3] in 3ms -peer0.org2.example.com | 2018-12-19 08:12:41.979 UTC [cceventmgmt] HandleStateUpdates -> INFO 065 Channel [businesschannel]: Handling deploy or update of chaincode [exp02] -peer0.org2.example.com | 2018-12-19 08:12:41.995 UTC [kvledger] CommitWithPvtData -> INFO 066 [businesschannel] Committed block [3] with 1 transaction(s) in 16ms (state_validation=1ms block_commit=9ms state_commit=3ms) -peer0.org2.example.com | 2018-12-19 08:13:31.924 UTC [gossip.privdata] StoreBlock -> INFO 067 [businesschannel] Received block [4] from buffer -peer0.org2.example.com | 2018-12-19 08:13:31.926 UTC [committer.txvalidator] Validate -> INFO 068 [businesschannel] Validated block [4] in 2ms -peer0.org2.example.com | 2018-12-19 08:13:31.960 UTC [kvledger] CommitWithPvtData -> INFO 069 [businesschannel] Committed block [4] with 1 transaction(s) in 33ms (state_validation=1ms block_commit=20ms state_commit=6ms) -peer0.org2.example.com | 2018-12-19 08:13:36.339 UTC [gossip.privdata] StoreBlock -> INFO 06a [businesschannel] Received block [5] from buffer -peer0.org2.example.com | 2018-12-19 08:13:36.478 UTC [committer.txvalidator] Validate -> INFO 06b [businesschannel] Validated block [5] in 138ms -peer0.org2.example.com | 2018-12-19 08:13:36.523 UTC [kvledger] CommitWithPvtData -> INFO 06c [businesschannel] Committed block [5] with 1 transaction(s) in 40ms (state_validation=3ms block_commit=26ms state_commit=7ms) -peer0.org2.example.com | 2018-12-19 08:13:55.860 UTC [gossip.privdata] StoreBlock -> INFO 06d [businesschannel] Received block [6] from buffer -peer0.org2.example.com | 2018-12-19 08:13:55.871 UTC [cauthdsl] deduplicate -> WARN 06e De-duplicating identity [Org1MSP0270edfed53a78d7d3c66dc25737f57f956e48ef69dca5ecc91c26679dd4eff3] at index 2 in signature set -peer0.org2.example.com | 2018-12-19 08:13:55.880 UTC [cauthdsl] deduplicate -> WARN 06f De-duplicating identity [Org1MSP0270edfed53a78d7d3c66dc25737f57f956e48ef69dca5ecc91c26679dd4eff3] at index 2 in signature set -peer0.org2.example.com | 2018-12-19 08:13:55.918 UTC [gossip.gossip] JoinChan -> INFO 070 Joining gossip network of channel businesschannel with 3 organizations -peer0.org2.example.com | 2018-12-19 08:13:55.919 UTC [gossip.gossip] learnAnchorPeers -> INFO 071 Learning about the configured anchor peers of Org2MSP for channel businesschannel : [{peer0.org2.example.com 7051}] -peer0.org2.example.com | 2018-12-19 08:13:55.934 UTC [comm.grpc.server] 1 -> INFO 072 unary call completed {"grpc.start_time": "2018-12-19T08:13:55.932Z", "grpc.service": "gossip.Gossip", "grpc.method": "Ping", "grpc.request_deadline": "2018-12-19T08:13:57.931Z", "grpc.peer_address": "172.18.0.4:53110", "grpc.peer_subject": "CN=peer1.org1.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "2.572ms"} -peer0.org2.example.com | 2018-12-19 08:13:55.919 UTC [gossip.gossip] learnAnchorPeers -> INFO 073 Anchor peer with same endpoint, skipping connecting to myself -peer0.org2.example.com | 2018-12-19 08:13:55.935 UTC [gossip.gossip] learnAnchorPeers -> INFO 074 No configured anchor peers of Org3MSP for channel businesschannel to learn about -peer0.org2.example.com | 2018-12-19 08:13:55.935 UTC [gossip.gossip] learnAnchorPeers -> INFO 075 Learning about the configured anchor peers of Org1MSP for channel businesschannel : [{peer0.org1.example.com 7051}] -peer0.org2.example.com | 2018-12-19 08:13:55.953 UTC [committer.txvalidator] Validate -> INFO 076 [businesschannel] Validated block [6] in 88ms -peer0.org2.example.com | 2018-12-19 08:13:55.977 UTC [kvledger] CommitWithPvtData -> INFO 077 [businesschannel] Committed block [6] with 1 transaction(s) in 23ms (state_validation=1ms block_commit=13ms state_commit=4ms) -peer0.org2.example.com | 2018-12-19 08:13:55.989 UTC [comm.grpc.server] 1 -> INFO 078 streaming call completed {"grpc.start_time": "2018-12-19T08:11:46.349Z", "grpc.service": "gossip.Gossip", "grpc.method": "GossipStream", "grpc.peer_address": "172.18.0.4:52942", "grpc.peer_subject": "CN=peer1.org1.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "2m9.7792212s"} -peer0.org2.example.com | 2018-12-19 08:13:55.989 UTC [comm.grpc.server] 1 -> INFO 079 streaming call completed {"grpc.start_time": "2018-12-19T08:13:55.983Z", "grpc.service": "gossip.Gossip", "grpc.method": "GossipStream", "grpc.request_deadline": "2018-12-19T08:14:05.982Z", "grpc.peer_address": "172.18.0.4:53110", "grpc.peer_subject": "CN=peer1.org1.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "6.6715ms"} -peer0.org2.example.com | 2018-12-19 08:13:56.015 UTC [comm.grpc.server] 1 -> INFO 07a unary call completed {"grpc.start_time": "2018-12-19T08:13:56.015Z", "grpc.service": "gossip.Gossip", "grpc.method": "Ping", "grpc.request_deadline": "2018-12-19T08:13:58.014Z", "grpc.peer_address": "172.18.0.5:33018", "grpc.peer_subject": "CN=peer1.org2.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "488.8µs"} -peer0.org2.example.com | 2018-12-19 08:13:56.025 UTC [comm.grpc.server] 1 -> INFO 07b streaming call completed {"grpc.start_time": "2018-12-19T08:11:37.649Z", "grpc.service": "gossip.Gossip", "grpc.method": "GossipStream", "grpc.peer_address": "172.18.0.5:32792", "grpc.peer_subject": "CN=peer1.org2.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "2m18.5163404s"} -peer0.org2.example.com | 2018-12-19 08:13:56.038 UTC [comm.grpc.server] 1 -> INFO 07c streaming call completed {"grpc.start_time": "2018-12-19T08:13:56.023Z", "grpc.service": "gossip.Gossip", "grpc.method": "GossipStream", "grpc.request_deadline": "2018-12-19T08:14:06.022Z", "grpc.peer_address": "172.18.0.5:33018", "grpc.peer_subject": "CN=peer1.org2.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "14.8628ms"} -peer0.org2.example.com | 2018-12-19 08:13:56.073 UTC [comm.grpc.server] 1 -> INFO 07d streaming call completed {"grpc.start_time": "2018-12-19T08:11:46.973Z", "grpc.service": "gossip.Gossip", "grpc.method": "GossipStream", "grpc.peer_address": "172.18.0.7:54938", "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": "2m9.2401261s"} -peer0.org2.example.com | 2018-12-19 08:13:56.096 UTC [comm.grpc.server] 1 -> INFO 07e unary call completed {"grpc.start_time": "2018-12-19T08:13:56.096Z", "grpc.service": "gossip.Gossip", "grpc.method": "Ping", "grpc.request_deadline": "2018-12-19T08:13:58.094Z", "grpc.peer_address": "172.18.0.7:55082", "grpc.peer_subject": "CN=peer0.org1.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "174.9µs"} -peer0.org2.example.com | 2018-12-19 08:13:56.128 UTC [comm.grpc.server] 1 -> INFO 07f streaming call completed {"grpc.start_time": "2018-12-19T08:13:56.1Z", "grpc.service": "gossip.Gossip", "grpc.method": "GossipStream", "grpc.request_deadline": "2018-12-19T08:14:06.1Z", "grpc.peer_address": "172.18.0.7:55082", "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": "28.6841ms"} -peer0.org2.example.com | 2018-12-19 08:13:56.134 UTC [comm.grpc.server] 1 -> INFO 080 unary call completed {"grpc.start_time": "2018-12-19T08:13:56.134Z", "grpc.service": "gossip.Gossip", "grpc.method": "Ping", "grpc.request_deadline": "2018-12-19T08:13:58.133Z", "grpc.peer_address": "172.18.0.7:55088", "grpc.peer_subject": "CN=peer0.org1.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "267.8µs"} -peer0.org2.example.com | 2018-12-19 08:13:56.149 UTC [comm.grpc.server] 1 -> INFO 081 streaming call completed {"grpc.start_time": "2018-12-19T08:13:56.137Z", "grpc.service": "gossip.Gossip", "grpc.method": "GossipStream", "grpc.peer_address": "172.18.0.7:55088", "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": "11.3709ms"} -peer0.org2.example.com | 2018-12-19 08:13:56.264 UTC [comm.grpc.server] 1 -> INFO 082 unary call completed {"grpc.start_time": "2018-12-19T08:13:56.264Z", "grpc.service": "gossip.Gossip", "grpc.method": "Ping", "grpc.request_deadline": "2018-12-19T08:13:58.263Z", "grpc.peer_address": "172.18.0.7:55092", "grpc.peer_subject": "CN=peer0.org1.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "126.1µs"} -peer0.org2.example.com | 2018-12-19 08:14:14.765 UTC [endorser] callChaincode -> INFO 083 [][15745b26] Entry chaincode: name:"cscc" -peer0.org2.example.com | 2018-12-19 08:14:14.766 UTC [endorser] callChaincode -> INFO 084 [][15745b26] Exit chaincode: name:"cscc" (0ms) -peer0.org2.example.com | 2018-12-19 08:14:14.766 UTC [comm.grpc.server] 1 -> INFO 085 unary call completed {"grpc.start_time": "2018-12-19T08:14:14.764Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.18.0.3:44982", "grpc.code": "OK", "grpc.call_duration": "1.9657ms"} -peer0.org2.example.com | 2018-12-19 08:14:15.957 UTC [endorser] callChaincode -> INFO 086 [][356c4d91] Entry chaincode: name:"qscc" -peer0.org2.example.com | 2018-12-19 08:14:15.959 UTC [endorser] callChaincode -> INFO 087 [][356c4d91] Exit chaincode: name:"qscc" (2ms) -peer0.org2.example.com | 2018-12-19 08:14:15.959 UTC [comm.grpc.server] 1 -> INFO 088 unary call completed {"grpc.start_time": "2018-12-19T08:14:15.957Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.18.0.3:44990", "grpc.code": "OK", "grpc.call_duration": "2.8241ms"} +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"} 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 e21fb6ca..3490d0e5 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 @@ -2018-12-19 08:11:33.987 UTC [localconfig] completeInitialization -> INFO 001 Kafka.Version unset, setting to 0.10.2.0 -2018-12-19 08:11:34.124 UTC [orderer.common.server] prettyPrintStruct -> INFO 002 Orderer config values: +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: General.LedgerType = "file" General.ListenAddress = "0.0.0.0" General.ListenPort = 7050 @@ -67,106 +67,105 @@ Debug.BroadcastTraceDir = "" Debug.DeliverTraceDir = "" Consensus = map[WALDir:/var/hyperledger/production/orderer/etcdraft/wal SnapDir:/var/hyperledger/production/orderer/etcdraft/snapshot] - Operations.ListenAddress = "127.0.0.1:8443" + Operations.ListenAddress = "0.0.0.0:8443" Operations.TLS.Enabled = false Operations.TLS.PrivateKey = "" Operations.TLS.Certificate = "" Operations.TLS.RootCAs = [] Operations.TLS.ClientAuthRequired = false Operations.TLS.ClientRootCAs = [] - Metrics.Provider = "disabled" + Metrics.Provider = "prometheus" Metrics.Statsd.Network = "udp" Metrics.Statsd.Address = "127.0.0.1:8125" Metrics.Statsd.WriteInterval = 30s Metrics.Statsd.Prefix = "" -2018-12-19 08:11:34.175 UTC [orderer.common.server] initializeServerConfig -> INFO 003 Starting orderer with TLS enabled -2018-12-19 08:11:34.180 UTC [fsblkstorage] newBlockfileMgr -> INFO 004 Getting block information from block storage -2018-12-19 08:11:34.204 UTC [orderer.commmon.multichannel] Initialize -> INFO 005 Starting system channel 'testchainid' with genesis block hash cde6efa82d0288cf91294accd919b39e2e13c658393e2d2d62d545b9d2dd5999 and orderer type solo -2018-12-19 08:11:34.204 UTC [orderer.common.server] Start -> INFO 006 Starting orderer: +[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 Commit SHA: development build Go version: go1.11.2 OS/Arch: linux/amd64 -2018-12-19 08:11:34.204 UTC [orderer.common.server] Start -> INFO 007 Beginning to serve requests -2018-12-19 08:11:39.250 UTC [comm.grpc.server] 1 -> INFO 008 streaming call completed {"grpc.start_time": "2018-12-19T08:11:39.196Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.18.0.3:60746", "grpc.code": "OK", "grpc.call_duration": "53.8668ms"} -2018-12-19 08:11:39.250 UTC [comm.grpc.server] 1 -> INFO 009 streaming call completed {"grpc.start_time": "2018-12-19T08:11:39.211Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Broadcast", "grpc.peer_address": "172.18.0.3:60748", "grpc.code": "OK", "grpc.call_duration": "39.6923ms"} -2018-12-19 08:11:39.268 UTC [fsblkstorage] newBlockfileMgr -> INFO 00a Getting block information from block storage -2018-12-19 08:11:39.276 UTC [orderer.commmon.multichannel] newChain -> INFO 00b Created and starting new chain businesschannel -2018-12-19 08:11:39.487 UTC [common.deliver] Handle -> WARN 00c Error reading from 172.18.0.3:60750: rpc error: code = Canceled desc = context canceled -2018-12-19 08:11:39.489 UTC [comm.grpc.server] 1 -> INFO 00d streaming call completed {"grpc.start_time": "2018-12-19T08:11:39.271Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.18.0.3:60750", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "218.3558ms"} -2018-12-19 08:11:43.511 UTC [orderer.common.broadcast] Handle -> WARN 00e Error reading from 172.18.0.3:60778: rpc error: code = Canceled desc = context canceled -2018-12-19 08:11:43.511 UTC [comm.grpc.server] 1 -> INFO 00f streaming call completed {"grpc.start_time": "2018-12-19T08:11:43.487Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Broadcast", "grpc.peer_address": "172.18.0.3:60778", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "24.3837ms"} -2018-12-19 08:11:43.512 UTC [common.deliver] Handle -> WARN 010 Error reading from 172.18.0.3:60776: rpc error: code = Canceled desc = context canceled -2018-12-19 08:11:43.512 UTC [comm.grpc.server] 1 -> INFO 011 streaming call completed {"grpc.start_time": "2018-12-19T08:11:43.469Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.18.0.3:60776", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "43.455ms"} -2018-12-19 08:11:45.711 UTC [orderer.common.broadcast] Handle -> WARN 012 Error reading from 172.18.0.3:60782: rpc error: code = Canceled desc = context canceled -2018-12-19 08:11:45.712 UTC [comm.grpc.server] 1 -> INFO 013 streaming call completed {"grpc.start_time": "2018-12-19T08:11:45.685Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Broadcast", "grpc.peer_address": "172.18.0.3:60782", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "26.7804ms"} -2018-12-19 08:11:45.717 UTC [common.deliver] Handle -> WARN 014 Error reading from 172.18.0.3:60780: rpc error: code = Canceled desc = context canceled -2018-12-19 08:11:45.718 UTC [comm.grpc.server] 1 -> INFO 015 streaming call completed {"grpc.start_time": "2018-12-19T08:11:45.669Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.18.0.3:60780", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "49.9858ms"} -2018-12-19 08:12:39.970 UTC [orderer.common.broadcast] Handle -> WARN 016 Error reading from 172.18.0.3:60852: rpc error: code = Canceled desc = context canceled -2018-12-19 08:12:39.971 UTC [comm.grpc.server] 1 -> INFO 017 streaming call completed {"grpc.start_time": "2018-12-19T08:11:54.725Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Broadcast", "grpc.peer_address": "172.18.0.3:60852", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "45.3166346s"} -2018-12-19 08:13:29.916 UTC [orderer.common.broadcast] Handle -> WARN 018 Error reading from 172.18.0.3:60870: rpc error: code = Canceled desc = context canceled -2018-12-19 08:13:29.916 UTC [comm.grpc.server] 1 -> INFO 019 streaming call completed {"grpc.start_time": "2018-12-19T08:13:29.89Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Broadcast", "grpc.peer_address": "172.18.0.3:60870", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "26.4973ms"} -2018-12-19 08:13:34.257 UTC [orderer.common.broadcast] Handle -> WARN 01a Error reading from 172.18.0.3:60884: rpc error: code = Canceled desc = context canceled -2018-12-19 08:13:34.257 UTC [comm.grpc.server] 1 -> INFO 01b streaming call completed {"grpc.start_time": "2018-12-19T08:13:34.221Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Broadcast", "grpc.peer_address": "172.18.0.3:60884", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "36.7293ms"} -2018-12-19 08:13:43.206 UTC [common.deliver] Handle -> WARN 01c Error reading from 172.18.0.3:60934: rpc error: code = Canceled desc = context canceled -2018-12-19 08:13:43.208 UTC [comm.grpc.server] 1 -> INFO 01d streaming call completed {"grpc.start_time": "2018-12-19T08:13:43.2Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.18.0.3:60934", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "8.3707ms"} -2018-12-19 08:13:43.548 UTC [common.deliver] Handle -> WARN 01e Error reading from 172.18.0.3:60936: rpc error: code = Canceled desc = context canceled -2018-12-19 08:13:43.548 UTC [comm.grpc.server] 1 -> INFO 01f streaming call completed {"grpc.start_time": "2018-12-19T08:13:43.529Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.18.0.3:60936", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "18.63ms"} -2018-12-19 08:13:43.707 UTC [common.deliver] Handle -> WARN 020 Error reading from 172.18.0.3:60938: rpc error: code = Canceled desc = context canceled -2018-12-19 08:13:43.708 UTC [comm.grpc.server] 1 -> INFO 021 streaming call completed {"grpc.start_time": "2018-12-19T08:13:43.7Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.18.0.3:60938", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "8.1067ms"} -2018-12-19 08:13:43.955 UTC [common.deliver] Handle -> WARN 022 Error reading from 172.18.0.3:60940: rpc error: code = Canceled desc = context canceled -2018-12-19 08:13:43.955 UTC [comm.grpc.server] 1 -> INFO 023 streaming call completed {"grpc.start_time": "2018-12-19T08:13:43.931Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.18.0.3:60940", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "23.8715ms"} -2018-12-19 08:13:44.438 UTC [common.deliver] Handle -> WARN 024 Error reading from 172.18.0.3:60942: rpc error: code = Canceled desc = context canceled -2018-12-19 08:13:44.439 UTC [comm.grpc.server] 1 -> INFO 025 streaming call completed {"grpc.start_time": "2018-12-19T08:13:44.425Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.18.0.3:60942", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "14.0098ms"} -2018-12-19 08:13:44.816 UTC [common.deliver] Handle -> WARN 026 Error reading from 172.18.0.3:60944: rpc error: code = Canceled desc = context canceled -2018-12-19 08:13:44.817 UTC [comm.grpc.server] 1 -> INFO 027 streaming call completed {"grpc.start_time": "2018-12-19T08:13:44.795Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.18.0.3:60944", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "23.1935ms"} -2018-12-19 08:13:45.232 UTC [common.deliver] Handle -> WARN 028 Error reading from 172.18.0.3:60946: rpc error: code = Canceled desc = context canceled -2018-12-19 08:13:45.233 UTC [comm.grpc.server] 1 -> INFO 029 streaming call completed {"grpc.start_time": "2018-12-19T08:13:45.221Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.18.0.3:60946", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "11.2157ms"} -2018-12-19 08:13:45.635 UTC [common.deliver] Handle -> WARN 02a Error reading from 172.18.0.3:60948: rpc error: code = Canceled desc = context canceled -2018-12-19 08:13:45.635 UTC [comm.grpc.server] 1 -> INFO 02b streaming call completed {"grpc.start_time": "2018-12-19T08:13:45.621Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.18.0.3:60948", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "14.7427ms"} -2018-12-19 08:13:45.894 UTC [common.deliver] Handle -> WARN 02c Error reading from 172.18.0.3:60950: rpc error: code = Canceled desc = context canceled -2018-12-19 08:13:45.894 UTC [comm.grpc.server] 1 -> INFO 02d streaming call completed {"grpc.start_time": "2018-12-19T08:13:45.884Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.18.0.3:60950", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "10.3308ms"} -2018-12-19 08:13:46.158 UTC [common.deliver] Handle -> WARN 02e Error reading from 172.18.0.3:60952: rpc error: code = Canceled desc = context canceled -2018-12-19 08:13:46.158 UTC [comm.grpc.server] 1 -> INFO 02f streaming call completed {"grpc.start_time": "2018-12-19T08:13:46.138Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.18.0.3:60952", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "19.7885ms"} -2018-12-19 08:13:46.458 UTC [common.deliver] Handle -> WARN 030 Error reading from 172.18.0.3:60954: rpc error: code = Canceled desc = context canceled -2018-12-19 08:13:46.459 UTC [comm.grpc.server] 1 -> INFO 031 streaming call completed {"grpc.start_time": "2018-12-19T08:13:46.445Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.18.0.3:60954", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "13.8658ms"} -2018-12-19 08:13:46.852 UTC [common.deliver] Handle -> WARN 032 Error reading from 172.18.0.3:60956: rpc error: code = Canceled desc = context canceled -2018-12-19 08:13:46.852 UTC [comm.grpc.server] 1 -> INFO 033 streaming call completed {"grpc.start_time": "2018-12-19T08:13:46.842Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.18.0.3:60956", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "10.6695ms"} -2018-12-19 08:13:55.768 UTC [cauthdsl] deduplicate -> WARN 034 De-duplicating identity [Org1MSP0270edfed53a78d7d3c66dc25737f57f956e48ef69dca5ecc91c26679dd4eff3] at index 2 in signature set -2018-12-19 08:13:55.769 UTC [cauthdsl] deduplicate -> WARN 035 De-duplicating identity [Org1MSP0270edfed53a78d7d3c66dc25737f57f956e48ef69dca5ecc91c26679dd4eff3] at index 2 in signature set -2018-12-19 08:13:55.815 UTC [common.deliver] Handle -> WARN 036 Error reading from 172.18.0.3:60958: rpc error: code = Canceled desc = context canceled -2018-12-19 08:13:55.815 UTC [comm.grpc.server] 1 -> INFO 037 streaming call completed {"grpc.start_time": "2018-12-19T08:13:55.739Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.18.0.3:60958", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "76.1519ms"} -2018-12-19 08:13:55.820 UTC [orderer.common.broadcast] Handle -> WARN 038 Error reading from 172.18.0.3:60960: rpc error: code = Canceled desc = context canceled -2018-12-19 08:13:55.824 UTC [comm.grpc.server] 1 -> INFO 039 streaming call completed {"grpc.start_time": "2018-12-19T08:13:55.763Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Broadcast", "grpc.peer_address": "172.18.0.3:60960", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "61.462ms"} -2018-12-19 08:13:55.827 UTC [cauthdsl] deduplicate -> WARN 03a De-duplicating identity [Org1MSP0270edfed53a78d7d3c66dc25737f57f956e48ef69dca5ecc91c26679dd4eff3] at index 2 in signature set -2018-12-19 08:13:55.828 UTC [cauthdsl] deduplicate -> WARN 03b De-duplicating identity [Org1MSP0270edfed53a78d7d3c66dc25737f57f956e48ef69dca5ecc91c26679dd4eff3] at index 2 in signature set -2018-12-19 08:13:58.012 UTC [common.deliver] Handle -> WARN 03c Error reading from 172.18.0.3:60988: rpc error: code = Canceled desc = context canceled -2018-12-19 08:13:58.013 UTC [comm.grpc.server] 1 -> INFO 03d streaming call completed {"grpc.start_time": "2018-12-19T08:13:57.999Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.18.0.3:60988", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "13.3758ms"} -2018-12-19 08:13:58.177 UTC [common.deliver] Handle -> WARN 03e Error reading from 172.18.0.3:60990: rpc error: code = Canceled desc = context canceled -2018-12-19 08:13:58.178 UTC [comm.grpc.server] 1 -> INFO 03f streaming call completed {"grpc.start_time": "2018-12-19T08:13:58.17Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.18.0.3:60990", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "7.0947ms"} -2018-12-19 08:13:58.731 UTC [common.deliver] Handle -> WARN 040 Error reading from 172.18.0.3:60992: rpc error: code = Canceled desc = context canceled -2018-12-19 08:13:58.732 UTC [comm.grpc.server] 1 -> INFO 041 streaming call completed {"grpc.start_time": "2018-12-19T08:13:58.719Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.18.0.3:60992", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "12.8045ms"} -2018-12-19 08:13:58.920 UTC [common.deliver] Handle -> WARN 042 Error reading from 172.18.0.3:60994: rpc error: code = Canceled desc = context canceled -2018-12-19 08:13:58.921 UTC [comm.grpc.server] 1 -> INFO 043 streaming call completed {"grpc.start_time": "2018-12-19T08:13:58.898Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.18.0.3:60994", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "23.3282ms"} -2018-12-19 08:13:59.097 UTC [common.deliver] Handle -> WARN 044 Error reading from 172.18.0.3:60996: rpc error: code = Canceled desc = context canceled -2018-12-19 08:13:59.098 UTC [comm.grpc.server] 1 -> INFO 045 streaming call completed {"grpc.start_time": "2018-12-19T08:13:59.085Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.18.0.3:60996", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "12.4647ms"} -2018-12-19 08:13:59.332 UTC [common.deliver] Handle -> WARN 046 Error reading from 172.18.0.3:60998: rpc error: code = Canceled desc = context canceled -2018-12-19 08:13:59.332 UTC [comm.grpc.server] 1 -> INFO 047 streaming call completed {"grpc.start_time": "2018-12-19T08:13:59.317Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.18.0.3:60998", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "15.9587ms"} -2018-12-19 08:13:59.747 UTC [common.deliver] Handle -> WARN 048 Error reading from 172.18.0.3:32768: rpc error: code = Canceled desc = context canceled -2018-12-19 08:13:59.747 UTC [comm.grpc.server] 1 -> INFO 049 streaming call completed {"grpc.start_time": "2018-12-19T08:13:59.692Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.18.0.3:32768", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "55.1541ms"} -2018-12-19 08:14:00.131 UTC [common.deliver] Handle -> WARN 04a Error reading from 172.18.0.3:32770: rpc error: code = Canceled desc = context canceled -2018-12-19 08:14:00.131 UTC [comm.grpc.server] 1 -> INFO 04b streaming call completed {"grpc.start_time": "2018-12-19T08:14:00.108Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.18.0.3:32770", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "23.4406ms"} -2018-12-19 08:14:00.349 UTC [common.deliver] Handle -> WARN 04c Error reading from 172.18.0.3:32772: rpc error: code = Canceled desc = context canceled -2018-12-19 08:14:00.350 UTC [comm.grpc.server] 1 -> INFO 04d streaming call completed {"grpc.start_time": "2018-12-19T08:14:00.34Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.18.0.3:32772", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "10.0703ms"} -2018-12-19 08:14:00.648 UTC [common.deliver] Handle -> WARN 04e Error reading from 172.18.0.3:32774: rpc error: code = Canceled desc = context canceled -2018-12-19 08:14:00.649 UTC [comm.grpc.server] 1 -> INFO 04f streaming call completed {"grpc.start_time": "2018-12-19T08:14:00.634Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.18.0.3:32774", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "14.9414ms"} -2018-12-19 08:14:01.098 UTC [common.deliver] Handle -> WARN 050 Error reading from 172.18.0.3:32776: rpc error: code = Canceled desc = context canceled -2018-12-19 08:14:01.098 UTC [comm.grpc.server] 1 -> INFO 051 streaming call completed {"grpc.start_time": "2018-12-19T08:14:01.079Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.18.0.3:32776", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "19.6551ms"} -2018-12-19 08:14:01.653 UTC [common.deliver] Handle -> WARN 052 Error reading from 172.18.0.3:32778: rpc error: code = Canceled desc = context canceled -2018-12-19 08:14:01.653 UTC [comm.grpc.server] 1 -> INFO 053 streaming call completed {"grpc.start_time": "2018-12-19T08:14:01.626Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.18.0.3:32778", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "27.0192ms"} -2018-12-19 08:14:02.108 UTC [common.deliver] Handle -> WARN 054 Error reading from 172.18.0.3:32780: rpc error: code = Canceled desc = context canceled -2018-12-19 08:14:02.108 UTC [comm.grpc.server] 1 -> INFO 055 streaming call completed {"grpc.start_time": "2018-12-19T08:14:02.082Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.18.0.3:32780", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "26.4043ms"} -2018-12-19 08:14:02.453 UTC [common.deliver] Handle -> WARN 056 Error reading from 172.18.0.3:32782: rpc error: code = Canceled desc = context canceled -2018-12-19 08:14:02.453 UTC [comm.grpc.server] 1 -> INFO 057 streaming call completed {"grpc.start_time": "2018-12-19T08:14:02.415Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.18.0.3:32782", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "38.3231ms"} -2018-12-19 08:14:02.774 UTC [common.deliver] Handle -> WARN 058 Error reading from 172.18.0.3:32784: rpc error: code = Canceled desc = context canceled -2018-12-19 08:14:02.774 UTC [comm.grpc.server] 1 -> INFO 059 streaming call completed {"grpc.start_time": "2018-12-19T08:14:02.752Z", "grpc.service": "orderer.AtomicBroadcast", "grpc.method": "Deliver", "grpc.peer_address": "172.18.0.3:32784", "error": "rpc error: code = Canceled desc = context canceled", "grpc.code": "Canceled", "grpc.call_duration": "21.6929ms"} +[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"} 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 f6055a82..cf242bc5 100644 --- a/hyperledger_fabric/v1.4.0/solo/logs/dev_peer0.log +++ b/hyperledger_fabric/v1.4.0/solo/logs/dev_peer0.log @@ -1,5 +1,4 @@ -2018-12-19 08:11:36.617 UTC [main] InitCmd -> WARN 001 CORE_LOGGING_LEVEL is no longer supported, please use the FABRIC_LOGGING_SPEC environment variable -2018-12-19 08:11:36.694 UTC [nodeCmd] serve -> INFO 002 Starting peer: +[001 01-09 08:56:43.71 UTC] [%{longpkg}] %{callpath} -> INFO Starting peer: Version: 1.4.0-rc1 Commit SHA: development build Go version: go1.11.2 @@ -9,179 +8,182 @@ Base Docker Namespace: hyperledger Base Docker Label: org.hyperledger.fabric Docker Namespace: hyperledger -2018-12-19 08:11:36.695 UTC [ledgermgmt] initialize -> INFO 003 Initializing ledger mgmt -2018-12-19 08:11:36.695 UTC [kvledger] NewProvider -> INFO 004 Initializing ledger provider -2018-12-19 08:11:36.746 UTC [kvledger] NewProvider -> INFO 005 ledger provider Initialized -2018-12-19 08:11:36.803 UTC [ledgermgmt] initialize -> INFO 006 ledger mgmt initialized -2018-12-19 08:11:36.803 UTC [peer] func1 -> INFO 007 Auto-detected peer address: 172.18.0.7:7051 -2018-12-19 08:11:36.803 UTC [peer] func1 -> INFO 008 Returning peer0.org1.example.com:7051 -2018-12-19 08:11:36.804 UTC [peer] func1 -> INFO 009 Auto-detected peer address: 172.18.0.7:7051 -2018-12-19 08:11:36.804 UTC [peer] func1 -> INFO 00a Returning peer0.org1.example.com:7051 -2018-12-19 08:11:36.820 UTC [nodeCmd] serve -> INFO 00b Starting peer with TLS enabled -2018-12-19 08:11:36.830 UTC [nodeCmd] computeChaincodeEndpoint -> INFO 00c Entering computeChaincodeEndpoint with peerHostname: peer0.org1.example.com -2018-12-19 08:11:36.830 UTC [nodeCmd] computeChaincodeEndpoint -> INFO 00d Exit with ccEndpoint: peer0.org1.example.com:7052 -2018-12-19 08:11:36.844 UTC [sccapi] registerSysCC -> INFO 00e system chaincode lscc(github.com/hyperledger/fabric/core/scc/lscc) registered -2018-12-19 08:11:36.844 UTC [sccapi] registerSysCC -> INFO 00f system chaincode cscc(github.com/hyperledger/fabric/core/scc/cscc) registered -2018-12-19 08:11:36.844 UTC [sccapi] registerSysCC -> INFO 010 system chaincode qscc(github.com/hyperledger/fabric/core/scc/qscc) registered -2018-12-19 08:11:36.844 UTC [sccapi] registerSysCC -> INFO 011 system chaincode +lifecycle(github.com/hyperledger/fabric/core/chaincode/lifecycle) registered -2018-12-19 08:11:36.858 UTC [gossip.service] func1 -> INFO 012 Initialize gossip with endpoint peer0.org1.example.com:7051 and bootstrap set [127.0.0.1:7051] -2018-12-19 08:11:36.867 UTC [gossip.gossip] NewGossipService -> INFO 013 Creating gossip service with self membership of Endpoint: peer0.org1.example.com:7051, InternalEndpoint: peer0.org1.example.com:7051, PKI-ID: 3d21b0bc142d8ddae3c27797c0c2bf16b05e0414b227484fdbfabf9859231106, Metadata: -2018-12-19 08:11:36.869 UTC [gossip.gossip] start -> INFO 014 Gossip instance peer0.org1.example.com:7051 started -2018-12-19 08:11:36.872 UTC [sccapi] deploySysCC -> INFO 015 system chaincode lscc/(github.com/hyperledger/fabric/core/scc/lscc) deployed -2018-12-19 08:11:36.873 UTC [cscc] Init -> INFO 016 Init CSCC -2018-12-19 08:11:36.873 UTC [sccapi] deploySysCC -> INFO 017 system chaincode cscc/(github.com/hyperledger/fabric/core/scc/cscc) deployed -2018-12-19 08:11:36.875 UTC [qscc] Init -> INFO 018 Init QSCC -2018-12-19 08:11:36.876 UTC [sccapi] deploySysCC -> INFO 019 system chaincode qscc/(github.com/hyperledger/fabric/core/scc/qscc) deployed -2018-12-19 08:11:36.878 UTC [sccapi] deploySysCC -> INFO 01a system chaincode +lifecycle/(github.com/hyperledger/fabric/core/chaincode/lifecycle) deployed -2018-12-19 08:11:36.878 UTC [nodeCmd] serve -> INFO 01b Deployed system chaincodes -2018-12-19 08:11:36.881 UTC [discovery] NewService -> INFO 01c Created with config TLS: true, authCacheMaxSize: 1000, authCachePurgeRatio: 0.750000 -2018-12-19 08:11:36.881 UTC [nodeCmd] registerDiscoveryService -> INFO 01d Discovery service activated -2018-12-19 08:11:36.881 UTC [nodeCmd] serve -> INFO 01e Starting peer with ID=[name:"peer0.org1.example.com" ], network ID=[dev], address=[peer0.org1.example.com:7051] -2018-12-19 08:11:36.882 UTC [nodeCmd] serve -> INFO 01f Started peer with ID=[name:"peer0.org1.example.com" ], network ID=[dev], address=[peer0.org1.example.com:7051] -2018-12-19 08:11:36.907 UTC [comm.grpc.server] 1 -> INFO 020 unary call completed {"grpc.start_time": "2018-12-19T08:11:36.907Z", "grpc.service": "gossip.Gossip", "grpc.method": "Ping", "grpc.request_deadline": "2018-12-19T08:11:38.905Z", "grpc.peer_address": "172.18.0.4:56956", "grpc.peer_subject": "CN=peer1.org1.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "123.1µs"} -2018-12-19 08:11:36.917 UTC [comm.grpc.server] 1 -> INFO 021 streaming call completed {"grpc.start_time": "2018-12-19T08:11:36.909Z", "grpc.service": "gossip.Gossip", "grpc.method": "GossipStream", "grpc.request_deadline": "2018-12-19T08:11:46.909Z", "grpc.peer_address": "172.18.0.4:56956", "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": "8.1053ms"} -2018-12-19 08:11:36.921 UTC [comm.grpc.server] 1 -> INFO 022 unary call completed {"grpc.start_time": "2018-12-19T08:11:36.921Z", "grpc.service": "gossip.Gossip", "grpc.method": "Ping", "grpc.request_deadline": "2018-12-19T08:11:38.92Z", "grpc.peer_address": "172.18.0.4:56960", "grpc.peer_subject": "CN=peer1.org1.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "178.8µs"} -2018-12-19 08:11:40.036 UTC [endorser] callChaincode -> INFO 023 [][e0c1b0fe] Entry chaincode: name:"cscc" -2018-12-19 08:11:40.039 UTC [ledgermgmt] CreateLedger -> INFO 024 Creating ledger [businesschannel] with genesis block -2018-12-19 08:11:40.043 UTC [fsblkstorage] newBlockfileMgr -> INFO 025 Getting block information from block storage -2018-12-19 08:11:40.064 UTC [kvledger] CommitWithPvtData -> INFO 026 [businesschannel] Committed block [0] with 1 transaction(s) in 15ms (state_validation=2ms block_commit=8ms state_commit=3ms) -2018-12-19 08:11:40.066 UTC [ledgermgmt] CreateLedger -> INFO 027 Created ledger [businesschannel] with genesis block -2018-12-19 08:11:40.075 UTC [gossip.gossip] JoinChan -> INFO 028 Joining gossip network of channel businesschannel with 2 organizations -2018-12-19 08:11:40.075 UTC [gossip.gossip] learnAnchorPeers -> INFO 029 No configured anchor peers of Org2MSP for channel businesschannel to learn about -2018-12-19 08:11:40.076 UTC [gossip.gossip] learnAnchorPeers -> INFO 02a No configured anchor peers of Org1MSP for channel businesschannel to learn about -2018-12-19 08:11:40.100 UTC [gossip.state] NewGossipStateProvider -> INFO 02b Updating metadata information, current ledger sequence is at = 0, next expected block is = 1 -2018-12-19 08:11:40.105 UTC [sccapi] deploySysCC -> INFO 02c system chaincode lscc/businesschannel(github.com/hyperledger/fabric/core/scc/lscc) deployed -2018-12-19 08:11:40.105 UTC [cscc] Init -> INFO 02d Init CSCC -2018-12-19 08:11:40.106 UTC [sccapi] deploySysCC -> INFO 02e system chaincode cscc/businesschannel(github.com/hyperledger/fabric/core/scc/cscc) deployed -2018-12-19 08:11:40.106 UTC [qscc] Init -> INFO 02f Init QSCC -2018-12-19 08:11:40.107 UTC [sccapi] deploySysCC -> INFO 030 system chaincode qscc/businesschannel(github.com/hyperledger/fabric/core/scc/qscc) deployed -2018-12-19 08:11:40.108 UTC [sccapi] deploySysCC -> INFO 031 system chaincode +lifecycle/businesschannel(github.com/hyperledger/fabric/core/chaincode/lifecycle) deployed -2018-12-19 08:11:40.109 UTC [endorser] callChaincode -> INFO 032 [][e0c1b0fe] Exit chaincode: name:"cscc" (72ms) -2018-12-19 08:11:40.109 UTC [comm.grpc.server] 1 -> INFO 033 unary call completed {"grpc.start_time": "2018-12-19T08:11:40.034Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.18.0.3:56200", "grpc.code": "OK", "grpc.call_duration": "75.3186ms"} -2018-12-19 08:11:41.410 UTC [endorser] callChaincode -> INFO 034 [][d601226d] Entry chaincode: name:"cscc" -2018-12-19 08:11:41.411 UTC [endorser] callChaincode -> INFO 035 [][d601226d] Exit chaincode: name:"cscc" (1ms) -2018-12-19 08:11:41.412 UTC [comm.grpc.server] 1 -> INFO 036 unary call completed {"grpc.start_time": "2018-12-19T08:11:41.41Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.18.0.3:56208", "grpc.code": "OK", "grpc.call_duration": "1.9299ms"} -2018-12-19 08:11:42.440 UTC [endorser] callChaincode -> INFO 037 [][105bde83] Entry chaincode: name:"qscc" -2018-12-19 08:11:42.442 UTC [endorser] callChaincode -> INFO 038 [][105bde83] Exit chaincode: name:"qscc" (2ms) -2018-12-19 08:11:42.443 UTC [comm.grpc.server] 1 -> INFO 039 unary call completed {"grpc.start_time": "2018-12-19T08:11:42.439Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.18.0.3:56216", "grpc.code": "OK", "grpc.call_duration": "4.581ms"} -2018-12-19 08:11:45.077 UTC [gossip.channel] reportMembershipChanges -> INFO 03a Membership view has changed. peers went online: [[peer1.org1.example.com:7051]] , current view: [[peer1.org1.example.com:7051]] -2018-12-19 08:11:46.105 UTC [gossip.election] beLeader -> INFO 03b 3d21b0bc142d8ddae3c27797c0c2bf16b05e0414b227484fdbfabf9859231106 : Becoming a leader -2018-12-19 08:11:46.106 UTC [gossip.service] func1 -> INFO 03c Elected as a leader, starting delivery service for channel businesschannel -2018-12-19 08:11:46.121 UTC [gossip.privdata] StoreBlock -> INFO 03d [businesschannel] Received block [1] from buffer -2018-12-19 08:11:46.151 UTC [gossip.gossip] JoinChan -> INFO 03e Joining gossip network of channel businesschannel with 2 organizations -2018-12-19 08:11:46.151 UTC [gossip.gossip] learnAnchorPeers -> INFO 03f No configured anchor peers of Org2MSP for channel businesschannel to learn about -2018-12-19 08:11:46.151 UTC [gossip.gossip] learnAnchorPeers -> INFO 040 Learning about the configured anchor peers of Org1MSP for channel businesschannel : [{peer0.org1.example.com 7051}] -2018-12-19 08:11:46.151 UTC [gossip.gossip] learnAnchorPeers -> INFO 041 Anchor peer with same endpoint, skipping connecting to myself -2018-12-19 08:11:46.169 UTC [committer.txvalidator] Validate -> INFO 042 [businesschannel] Validated block [1] in 47ms -2018-12-19 08:11:46.196 UTC [comm.grpc.server] 1 -> INFO 043 unary call completed {"grpc.start_time": "2018-12-19T08:11:46.196Z", "grpc.service": "gossip.Gossip", "grpc.method": "Ping", "grpc.request_deadline": "2018-12-19T08:11:48.195Z", "grpc.peer_address": "172.18.0.4:57006", "grpc.peer_subject": "CN=peer1.org1.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "135.3µs"} -2018-12-19 08:11:46.197 UTC [kvledger] CommitWithPvtData -> INFO 044 [businesschannel] Committed block [1] with 1 transaction(s) in 27ms (state_validation=1ms block_commit=18ms state_commit=4ms) -2018-12-19 08:11:46.198 UTC [gossip.privdata] StoreBlock -> INFO 045 [businesschannel] Received block [2] from buffer -2018-12-19 08:11:46.213 UTC [comm.grpc.server] 1 -> INFO 046 streaming call completed {"grpc.start_time": "2018-12-19T08:11:36.924Z", "grpc.service": "gossip.Gossip", "grpc.method": "GossipStream", "grpc.peer_address": "172.18.0.4:56960", "grpc.peer_subject": "CN=peer1.org1.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "9.2887272s"} -2018-12-19 08:11:46.216 UTC [comm.grpc.server] 1 -> INFO 047 streaming call completed {"grpc.start_time": "2018-12-19T08:11:46.211Z", "grpc.service": "gossip.Gossip", "grpc.method": "GossipStream", "grpc.request_deadline": "2018-12-19T08:11:56.2Z", "grpc.peer_address": "172.18.0.4:57006", "grpc.peer_subject": "CN=peer1.org1.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "4.8086ms"} -2018-12-19 08:11:46.217 UTC [gossip.gossip] JoinChan -> INFO 048 Joining gossip network of channel businesschannel with 2 organizations -2018-12-19 08:11:46.217 UTC [gossip.gossip] learnAnchorPeers -> INFO 049 Learning about the configured anchor peers of Org1MSP for channel businesschannel : [{peer0.org1.example.com 7051}] -2018-12-19 08:11:46.217 UTC [gossip.gossip] learnAnchorPeers -> INFO 04a Anchor peer with same endpoint, skipping connecting to myself -2018-12-19 08:11:46.218 UTC [gossip.gossip] learnAnchorPeers -> INFO 04b Learning about the configured anchor peers of Org2MSP for channel businesschannel : [{peer0.org2.example.com 7051}] -2018-12-19 08:11:46.236 UTC [committer.txvalidator] Validate -> INFO 04c [businesschannel] Validated block [2] in 38ms -2018-12-19 08:11:46.281 UTC [kvledger] CommitWithPvtData -> INFO 04d [businesschannel] Committed block [2] with 1 transaction(s) in 40ms (state_validation=7ms block_commit=28ms state_commit=2ms) -2018-12-19 08:11:46.336 UTC [comm.grpc.server] 1 -> INFO 04e unary call completed {"grpc.start_time": "2018-12-19T08:11:46.336Z", "grpc.service": "gossip.Gossip", "grpc.method": "Ping", "grpc.request_deadline": "2018-12-19T08:11:48.336Z", "grpc.peer_address": "172.18.0.4:57014", "grpc.peer_subject": "CN=peer1.org1.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "123.3µs"} -2018-12-19 08:11:46.346 UTC [comm.grpc.server] 1 -> INFO 04f streaming call completed {"grpc.start_time": "2018-12-19T08:11:46.339Z", "grpc.service": "gossip.Gossip", "grpc.method": "GossipStream", "grpc.request_deadline": "2018-12-19T08:11:56.338Z", "grpc.peer_address": "172.18.0.4:57014", "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": "7.5547ms"} -2018-12-19 08:11:46.697 UTC [comm.grpc.server] 1 -> INFO 050 unary call completed {"grpc.start_time": "2018-12-19T08:11:46.697Z", "grpc.service": "gossip.Gossip", "grpc.method": "Ping", "grpc.request_deadline": "2018-12-19T08:11:48.696Z", "grpc.peer_address": "172.18.0.4:57026", "grpc.peer_subject": "CN=peer1.org1.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "189.5µs"} -2018-12-19 08:11:46.720 UTC [comm.grpc.server] 1 -> INFO 051 streaming call completed {"grpc.start_time": "2018-12-19T08:11:46.713Z", "grpc.service": "gossip.Gossip", "grpc.method": "GossipStream", "grpc.peer_address": "172.18.0.4:57026", "grpc.peer_subject": "CN=peer1.org1.example.com,L=San Francisco,ST=California,C=US", "error": "EOF", "grpc.code": "Unknown", "grpc.call_duration": "6.8017ms"} -2018-12-19 08:11:46.751 UTC [comm.grpc.server] 1 -> INFO 052 unary call completed {"grpc.start_time": "2018-12-19T08:11:46.75Z", "grpc.service": "gossip.Gossip", "grpc.method": "Ping", "grpc.request_deadline": "2018-12-19T08:11:48.748Z", "grpc.peer_address": "172.18.0.6:55698", "grpc.peer_subject": "CN=peer0.org2.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "1.357ms"} -2018-12-19 08:11:46.768 UTC [comm.grpc.server] 1 -> INFO 053 streaming call completed {"grpc.start_time": "2018-12-19T08:11:46.755Z", "grpc.service": "gossip.Gossip", "grpc.method": "GossipStream", "grpc.request_deadline": "2018-12-19T08:11:56.754Z", "grpc.peer_address": "172.18.0.6:55698", "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": "13.7156ms"} -2018-12-19 08:11:46.780 UTC [comm.grpc.server] 1 -> INFO 054 unary call completed {"grpc.start_time": "2018-12-19T08:11:46.78Z", "grpc.service": "gossip.Gossip", "grpc.method": "Ping", "grpc.request_deadline": "2018-12-19T08:11:48.779Z", "grpc.peer_address": "172.18.0.5:48688", "grpc.peer_subject": "CN=peer1.org2.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "246.3µs"} -2018-12-19 08:11:46.780 UTC [comm.grpc.server] 1 -> INFO 055 unary call completed {"grpc.start_time": "2018-12-19T08:11:46.78Z", "grpc.service": "gossip.Gossip", "grpc.method": "Ping", "grpc.request_deadline": "2018-12-19T08:11:48.78Z", "grpc.peer_address": "172.18.0.6:55702", "grpc.peer_subject": "CN=peer0.org2.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "200.3µs"} -2018-12-19 08:11:46.795 UTC [comm.grpc.server] 1 -> INFO 056 streaming call completed {"grpc.start_time": "2018-12-19T08:11:46.783Z", "grpc.service": "gossip.Gossip", "grpc.method": "GossipStream", "grpc.request_deadline": "2018-12-19T08:11:56.783Z", "grpc.peer_address": "172.18.0.5:48688", "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": "12.1758ms"} -2018-12-19 08:11:46.825 UTC [comm.grpc.server] 1 -> INFO 057 unary call completed {"grpc.start_time": "2018-12-19T08:11:46.825Z", "grpc.service": "gossip.Gossip", "grpc.method": "Ping", "grpc.request_deadline": "2018-12-19T08:11:48.825Z", "grpc.peer_address": "172.18.0.6:55704", "grpc.peer_subject": "CN=peer0.org2.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "158.5µs"} -2018-12-19 08:11:46.830 UTC [comm.grpc.server] 1 -> INFO 058 streaming call completed {"grpc.start_time": "2018-12-19T08:11:46.789Z", "grpc.service": "gossip.Gossip", "grpc.method": "GossipStream", "grpc.peer_address": "172.18.0.6:55702", "grpc.peer_subject": "CN=peer0.org2.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "41.2196ms"} -2018-12-19 08:11:46.830 UTC [comm.grpc.server] 1 -> INFO 059 streaming call completed {"grpc.start_time": "2018-12-19T08:11:46.827Z", "grpc.service": "gossip.Gossip", "grpc.method": "GossipStream", "grpc.request_deadline": "2018-12-19T08:11:56.827Z", "grpc.peer_address": "172.18.0.6:55704", "grpc.peer_subject": "CN=peer0.org2.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "3.0167ms"} -2018-12-19 08:11:46.865 UTC [comm.grpc.server] 1 -> INFO 05a unary call completed {"grpc.start_time": "2018-12-19T08:11:46.865Z", "grpc.service": "gossip.Gossip", "grpc.method": "Ping", "grpc.request_deadline": "2018-12-19T08:11:48.863Z", "grpc.peer_address": "172.18.0.5:48696", "grpc.peer_subject": "CN=peer1.org2.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "136.5µs"} -2018-12-19 08:11:46.873 UTC [comm.grpc.server] 1 -> INFO 05b streaming call completed {"grpc.start_time": "2018-12-19T08:11:46.867Z", "grpc.service": "gossip.Gossip", "grpc.method": "GossipStream", "grpc.request_deadline": "2018-12-19T08:11:56.867Z", "grpc.peer_address": "172.18.0.5:48696", "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": "5.5626ms"} -2018-12-19 08:11:46.913 UTC [comm.grpc.server] 1 -> INFO 05c unary call completed {"grpc.start_time": "2018-12-19T08:11:46.913Z", "grpc.service": "gossip.Gossip", "grpc.method": "Ping", "grpc.request_deadline": "2018-12-19T08:11:48.913Z", "grpc.peer_address": "172.18.0.5:48700", "grpc.peer_subject": "CN=peer1.org2.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "111.7µs"} -2018-12-19 08:11:46.929 UTC [comm.grpc.server] 1 -> INFO 05d unary call completed {"grpc.start_time": "2018-12-19T08:11:46.929Z", "grpc.service": "gossip.Gossip", "grpc.method": "Ping", "grpc.request_deadline": "2018-12-19T08:11:48.929Z", "grpc.peer_address": "172.18.0.6:55716", "grpc.peer_subject": "CN=peer0.org2.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "169.5µs"} -2018-12-19 08:11:46.953 UTC [comm.grpc.server] 1 -> INFO 05e streaming call completed {"grpc.start_time": "2018-12-19T08:11:46.934Z", "grpc.service": "gossip.Gossip", "grpc.method": "GossipStream", "grpc.peer_address": "172.18.0.6:55716", "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": "18.5126ms"} -2018-12-19 08:11:46.957 UTC [comm.grpc.server] 1 -> INFO 05f streaming call completed {"grpc.start_time": "2018-12-19T08:11:46.932Z", "grpc.service": "gossip.Gossip", "grpc.method": "GossipStream", "grpc.peer_address": "172.18.0.5:48700", "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": "24.3593ms"} -2018-12-19 08:11:50.076 UTC [gossip.channel] reportMembershipChanges -> INFO 060 Membership view has changed. peers went online: [[peer1.org2.example.com:7051 ] [peer0.org2.example.com:7051 ]] , current view: [[peer1.org1.example.com:7051] [peer1.org2.example.com:7051 ] [peer0.org2.example.com:7051 ]] -2018-12-19 08:11:50.136 UTC [endorser] callChaincode -> INFO 061 [][11597d39] Entry chaincode: name:"lscc" -2018-12-19 08:11:50.138 UTC [lscc] executeInstall -> INFO 062 Installed Chaincode [exp02] Version [1.0] to peer -2018-12-19 08:11:50.138 UTC [endorser] callChaincode -> INFO 063 [][11597d39] Exit chaincode: name:"lscc" (2ms) -2018-12-19 08:11:50.139 UTC [comm.grpc.server] 1 -> INFO 064 unary call completed {"grpc.start_time": "2018-12-19T08:11:50.136Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.18.0.3:56280", "grpc.code": "OK", "grpc.call_duration": "3.0639ms"} -2018-12-19 08:11:54.727 UTC [endorser] callChaincode -> INFO 065 [businesschannel][a605b361] Entry chaincode: name:"lscc" -2018-12-19 08:11:54.743 UTC [chaincode.platform.golang] GenerateDockerBuild -> INFO 066 building chaincode with ldflagsOpt: '-ldflags "-linkmode external -extldflags '-static'"' -2018-12-19 08:12:39.954 UTC [endorser] callChaincode -> INFO 067 [businesschannel][a605b361] Exit chaincode: name:"lscc" (45298ms) -2018-12-19 08:12:39.956 UTC [comm.grpc.server] 1 -> INFO 068 unary call completed {"grpc.start_time": "2018-12-19T08:11:54.725Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.18.0.3:56296", "grpc.code": "OK", "grpc.call_duration": "45.3005385s"} -2018-12-19 08:12:41.974 UTC [gossip.privdata] StoreBlock -> INFO 069 [businesschannel] Received block [3] from buffer -2018-12-19 08:12:42.006 UTC [committer.txvalidator] Validate -> INFO 06a [businesschannel] Validated block [3] in 31ms -2018-12-19 08:12:42.010 UTC [cceventmgmt] HandleStateUpdates -> INFO 06b Channel [businesschannel]: Handling deploy or update of chaincode [exp02] -2018-12-19 08:12:42.041 UTC [kvledger] CommitWithPvtData -> INFO 06c [businesschannel] Committed block [3] with 1 transaction(s) in 31ms (state_validation=1ms block_commit=19ms state_commit=4ms) -2018-12-19 08:13:29.893 UTC [endorser] callChaincode -> INFO 06d [businesschannel][06c886de] Entry chaincode: name:"exp02" -2018-12-19 08:13:29.902 UTC [endorser] callChaincode -> INFO 06e [businesschannel][06c886de] Exit chaincode: name:"exp02" (9ms) -2018-12-19 08:13:29.903 UTC [comm.grpc.server] 1 -> INFO 06f unary call completed {"grpc.start_time": "2018-12-19T08:13:29.891Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.18.0.3:56314", "grpc.code": "OK", "grpc.call_duration": "11.5393ms"} -2018-12-19 08:13:31.935 UTC [gossip.privdata] StoreBlock -> INFO 070 [businesschannel] Received block [4] from buffer -2018-12-19 08:13:31.971 UTC [committer.txvalidator] Validate -> INFO 071 [businesschannel] Validated block [4] in 35ms -2018-12-19 08:13:32.005 UTC [kvledger] CommitWithPvtData -> INFO 072 [businesschannel] Committed block [4] with 1 transaction(s) in 32ms (state_validation=1ms block_commit=23ms state_commit=6ms) -2018-12-19 08:13:34.889 UTC [endorser] callChaincode -> INFO 073 [businesschannel][0eff2a99] Entry chaincode: name:"exp02" -2018-12-19 08:13:34.892 UTC [endorser] callChaincode -> INFO 074 [businesschannel][0eff2a99] Exit chaincode: name:"exp02" (4ms) -2018-12-19 08:13:34.895 UTC [comm.grpc.server] 1 -> INFO 075 unary call completed {"grpc.start_time": "2018-12-19T08:13:34.887Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.18.0.3:56334", "grpc.code": "OK", "grpc.call_duration": "8.5669ms"} -2018-12-19 08:13:36.339 UTC [gossip.privdata] StoreBlock -> INFO 076 [businesschannel] Received block [5] from buffer -2018-12-19 08:13:36.552 UTC [committer.txvalidator] Validate -> INFO 077 [businesschannel] Validated block [5] in 209ms -2018-12-19 08:13:36.680 UTC [kvledger] CommitWithPvtData -> INFO 078 [businesschannel] Committed block [5] with 1 transaction(s) in 126ms (state_validation=0ms block_commit=113ms state_commit=4ms) -2018-12-19 08:13:37.335 UTC [endorser] callChaincode -> INFO 079 [businesschannel][fcf11a3c] Entry chaincode: name:"exp02" -2018-12-19 08:13:37.340 UTC [endorser] callChaincode -> INFO 07a [businesschannel][fcf11a3c] Exit chaincode: name:"exp02" (4ms) -2018-12-19 08:13:37.342 UTC [comm.grpc.server] 1 -> INFO 07b unary call completed {"grpc.start_time": "2018-12-19T08:13:37.333Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.18.0.3:56338", "grpc.code": "OK", "grpc.call_duration": "8.9383ms"} -2018-12-19 08:13:38.349 UTC [endorser] callChaincode -> INFO 07c [businesschannel][3887efc9] Entry chaincode: name:"lscc" -2018-12-19 08:13:38.352 UTC [endorser] callChaincode -> INFO 07d [businesschannel][3887efc9] Exit chaincode: name:"lscc" (3ms) -2018-12-19 08:13:38.368 UTC [comm.grpc.server] 1 -> INFO 07e unary call completed {"grpc.start_time": "2018-12-19T08:13:38.348Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.18.0.3:56342", "grpc.code": "OK", "grpc.call_duration": "19.6932ms"} -2018-12-19 08:13:38.658 UTC [endorser] callChaincode -> INFO 07f [businesschannel][01382c1f] Entry chaincode: name:"lscc" -2018-12-19 08:13:38.661 UTC [endorser] callChaincode -> INFO 080 [businesschannel][01382c1f] Exit chaincode: name:"lscc" (2ms) -2018-12-19 08:13:38.662 UTC [comm.grpc.server] 1 -> INFO 081 unary call completed {"grpc.start_time": "2018-12-19T08:13:38.657Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.18.0.3:56346", "grpc.code": "OK", "grpc.call_duration": "5.4865ms"} -2018-12-19 08:13:38.930 UTC [endorser] callChaincode -> INFO 082 [businesschannel][c80109d5] Entry chaincode: name:"lscc" -2018-12-19 08:13:38.932 UTC [endorser] callChaincode -> INFO 083 [businesschannel][c80109d5] Exit chaincode: name:"lscc" (2ms) -2018-12-19 08:13:38.933 UTC [comm.grpc.server] 1 -> INFO 084 unary call completed {"grpc.start_time": "2018-12-19T08:13:38.929Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.18.0.3:56350", "grpc.code": "OK", "grpc.call_duration": "3.8826ms"} -2018-12-19 08:13:39.254 UTC [endorser] callChaincode -> INFO 085 [businesschannel][e391e116] Entry chaincode: name:"lscc" -2018-12-19 08:13:39.255 UTC [endorser] callChaincode -> INFO 086 [businesschannel][e391e116] Exit chaincode: name:"lscc" (1ms) -2018-12-19 08:13:39.256 UTC [comm.grpc.server] 1 -> INFO 087 unary call completed {"grpc.start_time": "2018-12-19T08:13:39.253Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.18.0.3:56354", "grpc.code": "OK", "grpc.call_duration": "3.524ms"} -2018-12-19 08:13:39.647 UTC [endorser] callChaincode -> INFO 088 [businesschannel][650d8dfd] Entry chaincode: name:"lscc" -2018-12-19 08:13:39.649 UTC [endorser] callChaincode -> INFO 089 [businesschannel][650d8dfd] Exit chaincode: name:"lscc" (2ms) -2018-12-19 08:13:39.649 UTC [comm.grpc.server] 1 -> INFO 08a unary call completed {"grpc.start_time": "2018-12-19T08:13:39.646Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.18.0.3:56358", "grpc.code": "OK", "grpc.call_duration": "3.5105ms"} -2018-12-19 08:13:40.392 UTC [endorser] callChaincode -> INFO 08b [businesschannel][86cae698] Entry chaincode: name:"qscc" -2018-12-19 08:13:40.394 UTC [endorser] callChaincode -> INFO 08c [businesschannel][86cae698] Exit chaincode: name:"qscc" (1ms) -2018-12-19 08:13:40.395 UTC [comm.grpc.server] 1 -> INFO 08d unary call completed {"grpc.start_time": "2018-12-19T08:13:40.391Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.18.0.3:56362", "grpc.code": "OK", "grpc.call_duration": "3.971ms"} -2018-12-19 08:13:40.675 UTC [endorser] callChaincode -> INFO 08e [businesschannel][10b5b899] Entry chaincode: name:"qscc" -2018-12-19 08:13:40.861 UTC [endorser] callChaincode -> INFO 08f [businesschannel][10b5b899] Exit chaincode: name:"qscc" (184ms) -2018-12-19 08:13:40.899 UTC [comm.grpc.server] 1 -> INFO 090 unary call completed {"grpc.start_time": "2018-12-19T08:13:40.672Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.18.0.3:56366", "grpc.code": "OK", "grpc.call_duration": "226.6949ms"} -2018-12-19 08:13:41.982 UTC [endorser] callChaincode -> INFO 091 [businesschannel][03e94530] Entry chaincode: name:"cscc" -2018-12-19 08:13:41.985 UTC [endorser] callChaincode -> INFO 092 [businesschannel][03e94530] Exit chaincode: name:"cscc" (3ms) -2018-12-19 08:13:41.986 UTC [comm.grpc.server] 1 -> INFO 093 unary call completed {"grpc.start_time": "2018-12-19T08:13:41.981Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.18.0.3:56370", "grpc.code": "OK", "grpc.call_duration": "5.0576ms"} -2018-12-19 08:13:42.222 UTC [endorser] callChaincode -> INFO 094 [businesschannel][984943dd] Entry chaincode: name:"cscc" -2018-12-19 08:13:42.223 UTC [endorser] callChaincode -> INFO 095 [businesschannel][984943dd] Exit chaincode: name:"cscc" (1ms) -2018-12-19 08:13:42.224 UTC [comm.grpc.server] 1 -> INFO 096 unary call completed {"grpc.start_time": "2018-12-19T08:13:42.221Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.18.0.3:56374", "grpc.code": "OK", "grpc.call_duration": "2.777ms"} -2018-12-19 08:13:42.616 UTC [endorser] callChaincode -> INFO 097 [businesschannel][b8f33e17] Entry chaincode: name:"cscc" -2018-12-19 08:13:42.618 UTC [endorser] callChaincode -> INFO 098 [businesschannel][b8f33e17] Exit chaincode: name:"cscc" (1ms) -2018-12-19 08:13:42.618 UTC [comm.grpc.server] 1 -> INFO 099 unary call completed {"grpc.start_time": "2018-12-19T08:13:42.615Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.18.0.3:56378", "grpc.code": "OK", "grpc.call_duration": "3.2781ms"} -2018-12-19 08:13:55.862 UTC [gossip.privdata] StoreBlock -> INFO 09a [businesschannel] Received block [6] from buffer -2018-12-19 08:13:55.873 UTC [cauthdsl] deduplicate -> WARN 09b De-duplicating identity [Org1MSP0270edfed53a78d7d3c66dc25737f57f956e48ef69dca5ecc91c26679dd4eff3] at index 2 in signature set -2018-12-19 08:13:55.881 UTC [cauthdsl] deduplicate -> WARN 09c De-duplicating identity [Org1MSP0270edfed53a78d7d3c66dc25737f57f956e48ef69dca5ecc91c26679dd4eff3] at index 2 in signature set -2018-12-19 08:13:55.917 UTC [comm.grpc.server] 1 -> INFO 09d unary call completed {"grpc.start_time": "2018-12-19T08:13:55.916Z", "grpc.service": "gossip.Gossip", "grpc.method": "Ping", "grpc.request_deadline": "2018-12-19T08:13:57.916Z", "grpc.peer_address": "172.18.0.4:57182", "grpc.peer_subject": "CN=peer1.org1.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "233.6µs"} -2018-12-19 08:13:55.986 UTC [comm.grpc.server] 1 -> INFO 09e streaming call completed {"grpc.start_time": "2018-12-19T08:13:55.931Z", "grpc.service": "gossip.Gossip", "grpc.method": "GossipStream", "grpc.request_deadline": "2018-12-19T08:14:05.93Z", "grpc.peer_address": "172.18.0.4:57182", "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": "55.8762ms"} -2018-12-19 08:13:56.020 UTC [comm.grpc.server] 1 -> INFO 09f unary call completed {"grpc.start_time": "2018-12-19T08:13:56.02Z", "grpc.service": "gossip.Gossip", "grpc.method": "Ping", "grpc.request_deadline": "2018-12-19T08:13:58.019Z", "grpc.peer_address": "172.18.0.6:55858", "grpc.peer_subject": "CN=peer0.org2.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "167µs"} -2018-12-19 08:13:56.022 UTC [comm.grpc.server] 1 -> INFO 0a0 unary call completed {"grpc.start_time": "2018-12-19T08:13:56.021Z", "grpc.service": "gossip.Gossip", "grpc.method": "Ping", "grpc.request_deadline": "2018-12-19T08:13:58.021Z", "grpc.peer_address": "172.18.0.5:48844", "grpc.peer_subject": "CN=peer1.org2.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "115.9µs"} -2018-12-19 08:13:56.057 UTC [comm.grpc.server] 1 -> INFO 0a1 streaming call completed {"grpc.start_time": "2018-12-19T08:13:56.04Z", "grpc.service": "gossip.Gossip", "grpc.method": "GossipStream", "grpc.request_deadline": "2018-12-19T08:14:06.039Z", "grpc.peer_address": "172.18.0.5:48844", "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": "16.824ms"} -2018-12-19 08:13:56.064 UTC [gossip.gossip] JoinChan -> INFO 0a2 Joining gossip network of channel businesschannel with 3 organizations -2018-12-19 08:13:56.065 UTC [gossip.gossip] learnAnchorPeers -> INFO 0a3 No configured anchor peers of Org3MSP for channel businesschannel to learn about -2018-12-19 08:13:56.065 UTC [gossip.gossip] learnAnchorPeers -> INFO 0a4 Learning about the configured anchor peers of Org1MSP for channel businesschannel : [{peer0.org1.example.com 7051}] -2018-12-19 08:13:56.066 UTC [gossip.gossip] learnAnchorPeers -> INFO 0a5 Anchor peer with same endpoint, skipping connecting to myself -2018-12-19 08:13:56.067 UTC [gossip.gossip] learnAnchorPeers -> INFO 0a6 Learning about the configured anchor peers of Org2MSP for channel businesschannel : [{peer0.org2.example.com 7051}] -2018-12-19 08:13:56.085 UTC [committer.txvalidator] Validate -> INFO 0a7 [businesschannel] Validated block [6] in 221ms -2018-12-19 08:13:56.087 UTC [comm.grpc.server] 1 -> INFO 0a8 streaming call completed {"grpc.start_time": "2018-12-19T08:13:56.058Z", "grpc.service": "gossip.Gossip", "grpc.method": "GossipStream", "grpc.request_deadline": "2018-12-19T08:14:06.058Z", "grpc.peer_address": "172.18.0.6:55858", "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": "29.2046ms"} -2018-12-19 08:13:56.090 UTC [comm.grpc.server] 1 -> INFO 0a9 unary call completed {"grpc.start_time": "2018-12-19T08:13:56.089Z", "grpc.service": "gossip.Gossip", "grpc.method": "Ping", "grpc.request_deadline": "2018-12-19T08:13:58.089Z", "grpc.peer_address": "172.18.0.5:48852", "grpc.peer_subject": "CN=peer1.org2.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "154.1µs"} -2018-12-19 08:13:56.107 UTC [comm.grpc.server] 1 -> INFO 0aa unary call completed {"grpc.start_time": "2018-12-19T08:13:56.107Z", "grpc.service": "gossip.Gossip", "grpc.method": "Ping", "grpc.request_deadline": "2018-12-19T08:13:58.107Z", "grpc.peer_address": "172.18.0.6:55866", "grpc.peer_subject": "CN=peer0.org2.example.com,L=San Francisco,ST=California,C=US", "grpc.code": "OK", "grpc.call_duration": "133.7µs"} -2018-12-19 08:13:56.116 UTC [kvledger] CommitWithPvtData -> INFO 0ab [businesschannel] Committed block [6] with 1 transaction(s) in 30ms (state_validation=3ms block_commit=23ms state_commit=2ms) -2018-12-19 08:13:56.143 UTC [comm.grpc.server] 1 -> INFO 0ac streaming call completed {"grpc.start_time": "2018-12-19T08:13:56.121Z", "grpc.service": "gossip.Gossip", "grpc.method": "GossipStream", "grpc.peer_address": "172.18.0.6:55866", "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.9251ms"} -2018-12-19 08:14:14.473 UTC [endorser] callChaincode -> INFO 0ad [][f82208e7] Entry chaincode: name:"cscc" -2018-12-19 08:14:14.474 UTC [endorser] callChaincode -> INFO 0ae [][f82208e7] Exit chaincode: name:"cscc" (1ms) -2018-12-19 08:14:14.474 UTC [comm.grpc.server] 1 -> INFO 0af unary call completed {"grpc.start_time": "2018-12-19T08:14:14.472Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.18.0.3:56466", "grpc.code": "OK", "grpc.call_duration": "2.6178ms"} -2018-12-19 08:14:15.602 UTC [endorser] callChaincode -> INFO 0b0 [][5bfe69b4] Entry chaincode: name:"qscc" -2018-12-19 08:14:15.605 UTC [endorser] callChaincode -> INFO 0b1 [][5bfe69b4] Exit chaincode: name:"qscc" (3ms) -2018-12-19 08:14:15.605 UTC [comm.grpc.server] 1 -> INFO 0b2 unary call completed {"grpc.start_time": "2018-12-19T08:14:15.6Z", "grpc.service": "protos.Endorser", "grpc.method": "ProcessProposal", "grpc.peer_address": "172.18.0.3:56474", "grpc.code": "OK", "grpc.call_duration": "4.643ms"} +[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"}